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
Describe the bug
The resume() method does not work on Response although pause() does. I traced this down to the uWebSockets uws_res_resume() API calling uwsRes->pause() instead of uwsRes->resume(). There was a bug filed there and just fixed: uNetworking/uWebSockets#1686
To Reproduce
I reproduced by uploading a large file to a route. I was able to pause it correctly with pause() but I could never get it to resume with resume(). It would always just remain stuck.
I actually patched and rebuilt the uWebSocket .so libraries with the fix locally and it seems to work well.
Expected behavior
The resume() should continue the upload after pausing.
The text was updated successfully, but these errors were encountered:
Describe the bug
The
resume()
method does not work on Response althoughpause()
does. I traced this down to the uWebSocketsuws_res_resume()
API callinguwsRes->pause()
instead ofuwsRes->resume()
. There was a bug filed there and just fixed: uNetworking/uWebSockets#1686To Reproduce
I reproduced by uploading a large file to a route. I was able to pause it correctly with
pause()
but I could never get it to resume withresume()
. It would always just remain stuck.I actually patched and rebuilt the uWebSocket
.so
libraries with the fix locally and it seems to work well.Expected behavior
The
resume()
should continue the upload after pausing.The text was updated successfully, but these errors were encountered: