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
{{ message }}
This repository has been archived by the owner on Jun 17, 2024. It is now read-only.
Observed Behavior:
The EsConnection interface does not provide a method to intentionally shut down the connection to the event store. The connection can be severed by terminating the actor system, but this will result in a TCP RST on the connection, prompting an error log on the Eventstore side Close reason: [ConnectionReset] Socket receive error
Expected Behavior:
The EsConnection interface provides a method that will gracefully terminate the connection to the event store, finishing all pending transmissions, then shutting down the TCP connection with TCP FIN.
Observed Behavior:
The EsConnection interface does not provide a method to intentionally shut down the connection to the event store. The connection can be severed by terminating the actor system, but this will result in a TCP RST on the connection, prompting an error log on the Eventstore side
Close reason: [ConnectionReset] Socket receive error
Expected Behavior:
The EsConnection interface provides a method that will gracefully terminate the connection to the event store, finishing all pending transmissions, then shutting down the TCP connection with TCP FIN.
Further reading:
Also see http://stackoverflow.com/questions/13049828/fin-vs-rst-in-tcp-connections, http://doc.akka.io/docs/akka/2.4/scala/io-tcp.html#Closing_connections
The text was updated successfully, but these errors were encountered: