diff --git hbase-server/src/main/java/org/apache/hadoop/hbase/executor/ExecutorService.java hbase-server/src/main/java/org/apache/hadoop/hbase/executor/ExecutorService.java index fc054ea..9a3dd81 100644 --- hbase-server/src/main/java/org/apache/hadoop/hbase/executor/ExecutorService.java +++ hbase-server/src/main/java/org/apache/hadoop/hbase/executor/ExecutorService.java @@ -101,7 +101,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("%", "%%"); } }