commit | a196b418a55af0e62ec0572239c18065d6bfe7cb | [log] [tgz] |
---|---|---|
author | Murtadha Hubail <mhubail@apache.org> | Thu Aug 09 16:24:43 2018 -0700 |
committer | Murtadha Hubail <mhubail@apache.org> | Thu Aug 09 16:41:46 2018 -0700 |
tree | 74a92fa4a80fdf2e63911b4c2677888b497f816a | |
parent | 4f26f9ab5a1b447ab7926a626b22207ef0bb44e8 [diff] |
[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 <jenkins@fulliautomatix.ics.uci.edu> Reviewed-by: Michael Blow <mblow@apache.org> Contrib: Michael Blow <mblow@apache.org> Integration-Tests: Michael Blow <mblow@apache.org> Tested-by: Michael Blow <mblow@apache.org>
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 @@ private void sendGoodBye() { try { ReplicationProtocol.sendGoodbye(sc); - } catch (IOException e) { + } catch (Exception e) { LOGGER.warn("Failed to send good bye to {}", this, e); } }