ascherbakoff commented on code in PR #7566:
URL: https://github.com/apache/ignite-3/pull/7566#discussion_r2791576721
##########
modules/transactions/src/main/java/org/apache/ignite/internal/tx/impl/HeapLockManager.java:
##########
@@ -759,6 +801,26 @@ public boolean coarse() {
return false;
}
+ @Override
+ public void tryFail(UUID txId, Exception cause) {
+ WaiterImpl waiter0 = null;
+
+ synchronized (waiters) {
+ WaiterImpl waiter = waiters.get(txId);
+
+ // Waiter can be null if it was invalidate by order conflict
resolution logic.
Review Comment:
🆗
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]