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
The embedded Jetty in neo4j has an idle connection timeout of 30 seconds.
The default configuration parameter for neography that is passed to Excon is to use persistent connections. Excon expects to be able to write to a persistent socket, but this is not always the case.
Neography should either default to passing :persistent => false to the Excon connection constructor, or it should catch IO exceptions relating to closed connections (broken pipe when writing, EOF when reading) and create a new connection if necessary.
The text was updated successfully, but these errors were encountered:
The embedded Jetty in neo4j has an idle connection timeout of 30 seconds.
The default configuration parameter for neography that is passed to Excon is to use persistent connections. Excon expects to be able to write to a persistent socket, but this is not always the case.
Neography should either default to passing
:persistent => false
to the Excon connection constructor, or it should catch IO exceptions relating to closed connections (broken pipe when writing, EOF when reading) and create a new connection if necessary.The text was updated successfully, but these errors were encountered: