Skip to content

Commit d7a5158

Browse files
committed
Merge branch 1.6 into 1.7
2 parents 0e5fef1 + 62800ed commit d7a5158

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/v1/examples.test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,9 @@ describe('examples', () => {
111111
// tag::config-connection-pool[]
112112
const driver = neo4j.driver(uri, neo4j.auth.basic(user, password),
113113
{
114-
maxConnectionLifetime: 30*60*60,
114+
maxConnectionLifetime: 3 * 60 * 60 * 1000, // 3 hours
115115
maxConnectionPoolSize: 50,
116-
connectionAcquisitionTimeout: 2*60
116+
connectionAcquisitionTimeout: 2 * 60 * 1000 // 120 seconds
117117
}
118118
);
119119
// end::config-connection-pool[]

0 commit comments

Comments
 (0)