[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);
         }
     }