You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@asterixdb.apache.org by mh...@apache.org on 2018/08/09 23:42:15 UTC

asterixdb git commit: [NO ISSUE][REPL] Attempt to Close Replication Channel Quietly

Repository: asterixdb
Updated Branches:
  refs/heads/master 4f26f9ab5 -> a196b418a


[NO ISSUE][REPL] Attempt to Close Replication Channel Quietly

- user model changes: no
- storage format changes: no
- interface changes: no

Change-Id: I69af20aa76682b6d28f5c73f21be6db77117896d
Reviewed-on: https://asterix-gerrit.ics.uci.edu/2870
Sonar-Qube: Jenkins <je...@fulliautomatix.ics.uci.edu>
Reviewed-by: Michael Blow <mb...@apache.org>
Contrib: Michael Blow <mb...@apache.org>
Integration-Tests: Michael Blow <mb...@apache.org>
Tested-by: Michael Blow <mb...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/asterixdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/asterixdb/commit/a196b418
Tree: http://git-wip-us.apache.org/repos/asf/asterixdb/tree/a196b418
Diff: http://git-wip-us.apache.org/repos/asf/asterixdb/diff/a196b418

Branch: refs/heads/master
Commit: a196b418a55af0e62ec0572239c18065d6bfe7cb
Parents: 4f26f9a
Author: Murtadha Hubail <mh...@apache.org>
Authored: Thu Aug 9 16:24:43 2018 -0700
Committer: Murtadha Hubail <mh...@apache.org>
Committed: Thu Aug 9 16:41:46 2018 -0700

----------------------------------------------------------------------
 .../java/org/apache/asterix/replication/api/PartitionReplica.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/asterixdb/blob/a196b418/asterixdb/asterix-replication/src/main/java/org/apache/asterix/replication/api/PartitionReplica.java
----------------------------------------------------------------------
diff --git a/asterixdb/asterix-replication/src/main/java/org/apache/asterix/replication/api/PartitionReplica.java b/asterixdb/asterix-replication/src/main/java/org/apache/asterix/replication/api/PartitionReplica.java
index 5c324b1..8847e7e 100644
--- a/asterixdb/asterix-replication/src/main/java/org/apache/asterix/replication/api/PartitionReplica.java
+++ b/asterixdb/asterix-replication/src/main/java/org/apache/asterix/replication/api/PartitionReplica.java
@@ -169,7 +169,7 @@ public class PartitionReplica implements IPartitionReplica {
     private void sendGoodBye() {
         try {
             ReplicationProtocol.sendGoodbye(sc);
-        } catch (IOException e) {
+        } catch (Exception e) {
             LOGGER.warn("Failed to send good bye to {}", this, e);
         }
     }