You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by bo...@apache.org on 2019/06/28 23:52:02 UTC

[geode] branch feature/GEODE-6929 created (now 2653d15)

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

boglesby pushed a change to branch feature/GEODE-6929
in repository https://gitbox.apache.org/repos/asf/geode.git.


      at 2653d15  GEODE-6929: Returned false after sending reply

This branch includes the following new commits:

     new 2653d15  GEODE-6929: Returned false after sending reply

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[geode] 01/01: GEODE-6929: Returned false after sending reply

Posted by bo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 2653d155baccce38eadca01caadf822e78a32bf8
Author: Barry Oglesby <bo...@pivotal.io>
AuthorDate: Fri Jun 28 16:50:49 2019 -0700

    GEODE-6929: Returned false after sending reply
---
 .../main/java/org/apache/geode/internal/cache/tx/RemotePutMessage.java   | 1 +
 1 file changed, 1 insertion(+)

diff --git a/geode-core/src/main/java/org/apache/geode/internal/cache/tx/RemotePutMessage.java b/geode-core/src/main/java/org/apache/geode/internal/cache/tx/RemotePutMessage.java
index 34a070e..cd89cc6 100755
--- a/geode-core/src/main/java/org/apache/geode/internal/cache/tx/RemotePutMessage.java
+++ b/geode-core/src/main/java/org/apache/geode/internal/cache/tx/RemotePutMessage.java
@@ -642,6 +642,7 @@ public class RemotePutMessage extends RemoteOperationMessageWithDirectReply
             RemoteOperationException ex = new RemoteOperationException(
                 "unable to perform put, but operation should not fail");
             sendReply(getSender(), getProcessorId(), dm, new ReplyException(ex), r, startTime);
+            return false;
           }
         }
       } catch (CacheWriterException cwe) {