We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 973d109 + c8beb97 commit b57b339Copy full SHA for b57b339
driver/src/main/java/org/neo4j/driver/internal/LeakLoggingNetworkSession.java
@@ -48,8 +48,8 @@ private void logLeakIfNeeded()
48
Boolean isOpen = Futures.blockingGet( currentConnectionIsOpen() );
49
if ( isOpen )
50
{
51
- logger.error( "Neo4j Session object leaked, please ensure that your application" +
52
- "calls the `close` method on Sessions before disposing of the objects.\n" +
+ logger.error( "Neo4j Session object leaked, please ensure that your application " +
+ "fully consumes results in Sessions or explicitly calls `close` on Sessions before disposing of the objects.\n" +
53
"Session was create at:\n" + stackTrace, null );
54
}
55
0 commit comments