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
If you're POSTing large binary data, the server might reject the POST with a 400 Bad Request error if the request is too large. I've been trying to figure out how to realize this from Promised-IO.
Switching body.forEach to body.every and returning true as long as writing is permitted should provide enough back-pressure to the body and finish the request. However, it looks like the response is never handled until the request is ended.
Is this something in Node? Or perhaps in JSGI (which is managing the other end of the connection)?
The text was updated successfully, but these errors were encountered:
If you're POSTing large binary data, the server might reject the POST with a 400 Bad Request error if the request is too large. I've been trying to figure out how to realize this from Promised-IO.
Switching
body.forEach
tobody.every
and returningtrue
as long as writing is permitted should provide enough back-pressure to the body and finish the request. However, it looks like the response is never handled until the request is ended.Is this something in Node? Or perhaps in JSGI (which is managing the other end of the connection)?
The text was updated successfully, but these errors were encountered: