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
after first bad request, the next request get in pending status forever in network tab.
i have switched to spring boot endpoint, that works nice without pending behaviour, to check headers difference. So spring after bad request send header
[only header, not closing server socket]
Connection: close
actix does not sent nothing, after explore actix source code
i have, just for test, force connection close on encoder.rs even is keep alive was sent by client and stop hanging pending request in client after that. There is some way to add feature like force_close_header only ? because i have tryied force_close but this close socket generating error. Another idea maybe is respect if add_header(("Connection", "close")) was added instead use connection type to write connection header. Some idea ? i can write a pull request if need it.
The text was updated successfully, but these errors were encountered:
i`m facing a very strange issue when i have multipart endpoints in actix using angular app (rxjs client):
actix endpoint
angular http client request
after first bad request, the next request get in pending status forever in network tab.
i have switched to spring boot endpoint, that works nice without pending behaviour, to check headers difference. So spring after bad request send header
[only header, not closing server socket]
Connection: close
actix does not sent nothing, after explore actix source code
i have, just for test, force connection close on encoder.rs even is keep alive was sent by client and stop hanging pending request in client after that. There is some way to add feature like force_close_header only ? because i have tryied force_close but this close socket generating error. Another idea maybe is respect if add_header(("Connection", "close")) was added instead use connection type to write connection header. Some idea ? i can write a pull request if need it.
The text was updated successfully, but these errors were encountered: