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
I have an HTTP server written in Julia. Sometimes when sending a request it fails with: connection reset by peer (ECONNRESET).
It is similar to issues #547 and #763. Those were fixed in #764 by adding more error codes to check. However, when I look into the current Server.jl code I do not see checking of these codes anymore. I noticed there was some refactor (mainly 170725b) done in the code recently. Is it possible that the bug could reappear after the refactor? Or is now the error code checking handled somewhere else?
That code was only ever emitting a @warn log that the connection was reset; we now have a more consistent logging framework where those errors are always emitted as @error logs instead of sometimes being @warn and sometimes @error. Regardless, these never affected the actual functioning of the server itself.
I have an HTTP server written in Julia. Sometimes when sending a request it fails with: connection reset by peer (ECONNRESET).
It is similar to issues #547 and #763. Those were fixed in #764 by adding more error codes to check. However, when I look into the current Server.jl code I do not see checking of these codes anymore. I noticed there was some refactor (mainly 170725b) done in the code recently. Is it possible that the bug could reappear after the refactor? Or is now the error code checking handled somewhere else?
Full error
Versions:
The text was updated successfully, but these errors were encountered: