Skip to content

Commit 3d15b4e

Browse files
committed
Update
1 parent 55f602f commit 3d15b4e

File tree

1 file changed

+3
-0
lines changed
  • testkit-backend/src/main/java/neo4j/org/testkit/backend/messages/requests

1 file changed

+3
-0
lines changed

testkit-backend/src/main/java/neo4j/org/testkit/backend/messages/requests/NewDriver.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,9 @@ public TestkitResponse process(TestkitState testkitState) {
103103
Optional.ofNullable(data.connectionTimeoutMs)
104104
.ifPresent(timeout -> configBuilder.withConnectionTimeout(timeout, TimeUnit.MILLISECONDS));
105105
Optional.ofNullable(data.fetchSize).ifPresent(configBuilder::withFetchSize);
106+
Optional.ofNullable(data.maxTxRetryTimeMs)
107+
.ifPresent(
108+
retryTimeMs -> configBuilder.withMaxTransactionRetryTime(retryTimeMs, TimeUnit.MILLISECONDS));
106109
Optional.ofNullable(data.livenessCheckTimeoutMs)
107110
.ifPresent(timeout -> configBuilder.withConnectionLivenessCheckTimeout(timeout, TimeUnit.MILLISECONDS));
108111
Optional.ofNullable(data.maxConnectionPoolSize).ifPresent(configBuilder::withMaxConnectionPoolSize);

0 commit comments

Comments
 (0)