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
See #66, I added some test coverage to validate that this behavior continues to work in Node 14. It would be really unexpected for http to change stream handling to change based on a status code, that's a higher (user) level concern.
If you could share runnable code that might help identify your issue.
After upgrading to Node.js 14, I do not receive HTTP 500 responses with code of the form:
This can be fixed by checking explicitly for
res.statusCode != 200
in simple-get's concat function, i.e.It appears that a change in Node.js 14 means that the stream end event is no-longer called in this situation, so simple-concat never returns output.
The text was updated successfully, but these errors were encountered: