-
Notifications
You must be signed in to change notification settings - Fork 20
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
parseFormData crashes node express server when exceeding max size #28
Comments
I'm not sure if I encountered the same error. I use If I let |
I am only able to prevent my server from crashing by adding
but that isn't ideal since the error is no longer being handled within the action, so we can't gracefully return a message to the user. |
I'm having the same issue currently. Couldn't get it to catch the error, no matter where i add the |
When uploading a file that is too large the
parseFormData
throws an MultipartParseError that is uncatchable. When it is thrown in a Remix action function, Remix is unable to catch it so the server crashes :(The text was updated successfully, but these errors were encountered: