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
Copy file name to clipboardExpand all lines: driver/src/main/java/org/neo4j/driver/TransactionConfig.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -174,9 +174,9 @@ private Builder() {}
174
174
* Set the transaction timeout. Transactions that execute longer than the configured timeout will be terminated by the database.
175
175
* See also {@link #withDefaultTimeout}.
176
176
* <p>
177
-
* This functionality allows to limit query/transaction execution time.
178
-
* The Specified timeout overrides the default timeout configured in the database using the {@code db.transaction.timeout} setting ({@code dbms.transaction.timeout} before Neo4j 5.0).
179
-
* Values higher than {@code db.transaction.timeout} will be ignored and will fall back to the default for server versions 4.2 to including 5.2.
177
+
* This functionality allows user code to limit query/transaction execution time.
178
+
* The specified timeout overrides the default timeout configured in the database using the {@code db.transaction.timeout} setting ({@code dbms.transaction.timeout} before Neo4j 5.0).
179
+
* Values higher than {@code db.transaction.timeout} will be ignored and will fall back to the default for server versions between 4.2 and 5.2 (inclusive).
180
180
* <p>
181
181
* The provided value should not represent a negative duration.
182
182
* {@link Duration#ZERO} will make the transaction execute indefinitely.
0 commit comments