HBASE-6488 HBase wont run on IPv6 on OSes that use zone-indexes

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1388586 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2012-09-21 17:52:10 +00:00
parent c49ee963e6
commit 2cd3c54de4
1 changed files with 1 additions and 1 deletions

View File

@ -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("%", "%%");
}
}