File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
testkit-backend/src/main/java/neo4j/org/testkit/backend/messages/requests Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -103,6 +103,9 @@ public TestkitResponse process(TestkitState testkitState) {
103
103
Optional .ofNullable (data .connectionTimeoutMs )
104
104
.ifPresent (timeout -> configBuilder .withConnectionTimeout (timeout , TimeUnit .MILLISECONDS ));
105
105
Optional .ofNullable (data .fetchSize ).ifPresent (configBuilder ::withFetchSize );
106
+ Optional .ofNullable (data .maxTxRetryTimeMs )
107
+ .ifPresent (
108
+ retryTimeMs -> configBuilder .withMaxTransactionRetryTime (retryTimeMs , TimeUnit .MILLISECONDS ));
106
109
Optional .ofNullable (data .livenessCheckTimeoutMs )
107
110
.ifPresent (timeout -> configBuilder .withConnectionLivenessCheckTimeout (timeout , TimeUnit .MILLISECONDS ));
108
111
Optional .ofNullable (data .maxConnectionPoolSize ).ifPresent (configBuilder ::withMaxConnectionPoolSize );
You can’t perform that action at this time.
0 commit comments