You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is because fs.readFile() is trying to read a file exceeds the size of 256MB (See: nodejs/node#3175 While turning the buffer content to a string, this error happens.)
Log folders usually contains memory dump files which can be possibly larger than 256MB, and listAppLogFiles will check every file in the log folder in isApplogFile with fs.readFile, that's where the error happens.
The text was updated successfully, but these errors were encountered:
This is because fs.readFile() is trying to read a file exceeds the size of 256MB (See: nodejs/node#3175 While turning the buffer content to a string, this error happens.)
Log folders usually contains memory dump files which can be possibly larger than 256MB, and
listAppLogFiles
will check every file in the log folder inisApplogFile
withfs.readFile
, that's where the error happens.The text was updated successfully, but these errors were encountered: