You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ir...@apache.org on 2019/03/27 17:47:13 UTC

[ignite] branch master updated: IGNITE-8223 GridNearTxLocal.clearPrepareFuture does effectively nothing - Fixes #5984.

This is an automated email from the ASF dual-hosted git repository.

irakov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new 18d20a6  IGNITE-8223 GridNearTxLocal.clearPrepareFuture does effectively nothing - Fixes #5984.
18d20a6 is described below

commit 18d20a632e5fbabc28f0bb355e5b458171842a0a
Author: Rodion4ik <ro...@mail.ru>
AuthorDate: Wed Mar 27 20:44:02 2019 +0300

    IGNITE-8223 GridNearTxLocal.clearPrepareFuture does effectively nothing - Fixes #5984.
    
    Signed-off-by: Ivan Rakov <ir...@apache.org>
---
 .../internal/processors/cache/distributed/near/GridNearTxLocal.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/near/GridNearTxLocal.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/near/GridNearTxLocal.java
index db673e5..b55b60c 100644
--- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/near/GridNearTxLocal.java
+++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/near/GridNearTxLocal.java
@@ -316,7 +316,7 @@ public class GridNearTxLocal extends GridDhtTxLocalAdapter implements GridTimeou
 
     /** {@inheritDoc} */
     @Override protected void clearPrepareFuture(GridDhtTxPrepareFuture fut) {
-        PREP_FUT_UPD.compareAndSet(this, fut, null);
+       //No-op.
     }
 
     /**