-
-
Notifications
You must be signed in to change notification settings - Fork 133
New issue
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
Upload being cancelled crashed the Node process #322
Comments
Here is the stack trace I receive.
|
Are you sure you are using an up-to-date We have tests for client aborted requests:
Note that if the client aborts before the second chunk of a file's stream has been sent, If you are doing all these things correctly, we can dig deeper and see if there is a |
Hey. I haven't had much time to work on this these days, but I'll try to check everything today. I'm pretty sure that I've tried adding promises and try-catches around the whole resolver, I'll have another go at it and try to make a minimal testable example. The issue being that the files need to be very large to test in local (I'm testing through a VPN). |
OK, I've found the issue working by dichotomy. It was on the other side of the resolver: my graphql server is forwarding the multipart request to a backend API, and it was the multipart call towards the backend API that was failing. I have no clue why this is failing there, why adding an error event on the stream itself doesn't catch the error, etc. Between the promises, error events, and exceptions, I must admit I'm a little lost with proper error handling and propagation in Node. Thanks for taking the time to read my ignorant issue :D . |
I'm implementing an upload form for large files, and everything is dandy except for one particular issue: when the user closes its browser (which cancels the request), the node process crashes.
I've been able to trace the issue to this line: https://github.com/jaydenseric/graphql-upload/blob/master/processRequest.js#L335, and confirmed it by commenting out the code.
Is there a way to prevent the crash I didn't see?
The text was updated successfully, but these errors were encountered: