wchevreuil commented on a change in pull request #1217: HBASE-23891: Add an option to Actions to filter out meta RS URL: https://github.com/apache/hbase/pull/1217#discussion_r385654366
########## File path: hbase-it/src/test/java/org/apache/hadoop/hbase/chaos/actions/RollingBatchSuspendResumeRsAction.java ########## @@ -64,6 +67,11 @@ public void perform() throws Exception { (int) (ratio * 100))); List<ServerName> selectedServers = selectServers(); + if(!killMetaRs){ + ServerName metaServer = cluster.getServerHoldingMeta(); + selectedServers.remove(metaServer); + } Review comment: See previous comment above. ---------------------------------------------------------------- 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: us...@infra.apache.org With regards, Apache Git Services