We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've encountered an unhandled promise rejection that I was able to track down and fix with the following patch.
diff --git a/extract.js b/extract.js index 18e614e..e657bc3 100644 --- a/extract.js +++ b/extract.js @@ -27,7 +27,7 @@ module.exports = function (req, dest, fnDestFilename, opts = {}) { resolve(rs) }) - })) + }).catch(reject)) }) busboy.on('field', (name, value) => {
I think it happened when there was a problem with GlusterFS. I was able to reproduce it using SSHFS, but it's not simple.
There is a Promise.all(files).catch(reject) further down, but it's too late.
Promise.all(files).catch(reject)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I've encountered an unhandled promise rejection that I was able to track down and fix with the following patch.
I think it happened when there was a problem with GlusterFS. I was able to reproduce it using SSHFS, but it's not simple.
There is a
Promise.all(files).catch(reject)
further down, but it's too late.The text was updated successfully, but these errors were encountered: