rpuch commented on code in PR #5209:
URL: https://github.com/apache/ignite-3/pull/5209#discussion_r1988492066


##########
modules/transactions/src/main/java/org/apache/ignite/internal/tx/impl/TxManagerImpl.java:
##########
@@ -458,6 +458,11 @@ private ReadWriteTransactionImpl beginReadWriteTransaction(
         return transaction;
     }
 
+    private static long getTimeoutOrDefault(InternalTxOptions options, long 
defaultValue) {
+        // 0 timeout means we have to use the default value.
+        return options.timeoutMillis() == 0 ? defaultValue : 
options.timeoutMillis();

Review Comment:
   Please introduce a constant, even if not same as in the client module



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@ignite.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to