Apache9 commented on a change in pull request #1441: HBASE-24120 Flakey Test: 
TestReplicationAdminWithClusters timeout
URL: https://github.com/apache/hbase/pull/1441#discussion_r405202353
 
 

 ##########
 File path: 
hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSourceShipper.java
 ##########
 @@ -122,6 +122,10 @@ public final void run() {
       } catch (InterruptedException e) {
         LOG.trace("Interrupted while waiting for next replication entry 
batch", e);
         Thread.currentThread().interrupt();
+      } catch (ReplicationRuntimeException rre) {
 
 Review comment:
   I think we could do this
   ```
   catch (InterruptedException | ReplicationRuntimeException e) {
     blabla
   }
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to