diff --git src/main/java/org/apache/hadoop/hbase/executor/ExecutorService.java src/main/java/org/apache/hadoop/hbase/executor/ExecutorService.java index 7fb4266..5fdb8c3 100644 --- src/main/java/org/apache/hadoop/hbase/executor/ExecutorService.java +++ src/main/java/org/apache/hadoop/hbase/executor/ExecutorService.java @@ -104,7 +104,7 @@ public class ExecutorService { * @return Conflation of the executor type and the passed servername. */ String getExecutorName(String serverName) { - return this.toString() + "-" + serverName; + return this.toString() + "-" + serverName.replace('%', '-'); } }