HBASE-16315 RegionSizeCalculator prints region names as binary without escapes

This commit is contained in:
Enis Soztutar 2016-08-02 16:35:25 -07:00
parent 1b5f8c7123
commit 64136151b1
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ public class RegionLoad {
* @return the region name as a string
*/
public String getNameAsString() {
return Bytes.toString(getName());
return Bytes.toStringBinary(getName());
}
/**