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
Note how 'DONE' is missing. (And for the CJS variant the .then callback is never called.)
Exit code 13 means Node.js detected a deadlock and exited: https://stackoverflow.com/q/64602114.
This is caused by MultipartParser not calling the done() callback in _flush if this.state === STATE.END. See Multipart.js:78.
Support plan
Context
What are you trying to achieve or the steps to reproduce?
I'm trying to read a MIME buffer and consume
partData
buffers.CommonJS alternative:
What was the result you got?
CommonJS:
Note how 'DONE' is missing. (And for the CJS variant the
.then
callback is never called.)Exit code 13 means Node.js detected a deadlock and exited: https://stackoverflow.com/q/64602114.
This is caused by MultipartParser not calling the
done()
callback in_flush
ifthis.state === STATE.END
. See Multipart.js:78.What result did you expect?
Fix
Add
else done();
toMultipartParser#_flush
.The text was updated successfully, but these errors were encountered: