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 a server closes the connection, the connection is marked as closed, but the connection is kept in the endpoint[key] cache.
Later requests to send data over that connection fail silently (Connection.prototype._send checks _closed, silently returns).
This manifests itself in some number of requests succeeding, and then suddenly no more requests succeed, with no error.
I've fixed it locally by having the connection emit a new event "closed". Endpoint re-emits this event, and Agent finally handles it by removing the closed endpoint/connection from Agent.endpoints.
The text was updated successfully, but these errors were encountered:
After a server closes the connection, the connection is marked as closed, but the connection is kept in the endpoint[key] cache.
Later requests to send data over that connection fail silently (Connection.prototype._send checks _closed, silently returns).
This manifests itself in some number of requests succeeding, and then suddenly no more requests succeed, with no error.
I've fixed it locally by having the connection emit a new event "closed". Endpoint re-emits this event, and Agent finally handles it by removing the closed endpoint/connection from Agent.endpoints.
The text was updated successfully, but these errors were encountered: