You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by bs...@apache.org on 2018/04/30 22:16:16 UTC

[geode] branch feature/GEODE-5155 updated: GEODE-5155 hang recovering transaction state for crashed server

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

bschuchardt pushed a commit to branch feature/GEODE-5155
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/feature/GEODE-5155 by this push:
     new 1a9ee1f  GEODE-5155 hang recovering transaction state for crashed server
1a9ee1f is described below

commit 1a9ee1f198877d6d715c9563f2d68cfb318ba88b
Author: Bruce Schuchardt <bs...@pivotal.io>
AuthorDate: Mon Apr 30 15:15:38 2018 -0700

    GEODE-5155 hang recovering transaction state for crashed server
    
    oops - missed a change
---
 .../main/java/org/apache/geode/internal/cache/TXFarSideCMTracker.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/geode-core/src/main/java/org/apache/geode/internal/cache/TXFarSideCMTracker.java b/geode-core/src/main/java/org/apache/geode/internal/cache/TXFarSideCMTracker.java
index 38ca6a9..d3ff2bc 100644
--- a/geode-core/src/main/java/org/apache/geode/internal/cache/TXFarSideCMTracker.java
+++ b/geode-core/src/main/java/org/apache/geode/internal/cache/TXFarSideCMTracker.java
@@ -171,7 +171,7 @@ public class TXFarSideCMTracker {
     if (mess != null) {
       synchronized (mess) {
         // tx in progress, we must wait until its done
-        while (!mess.wasProcessed() || mess.isDepartureNoticed()) {
+        while (!(mess.wasProcessed() || mess.isDepartureNoticed())) {
           try {
             mess.wait(100);
           } catch (InterruptedException ie) {

-- 
To stop receiving notification emails like this one, please contact
bschuchardt@apache.org.