HBASE-26876 Use toStringBinary for rowkey in RegionServerCallable error string (#4269)

Signed-off-by: Xiaolin Ha <haxiaolin@apache.org>
This commit is contained in:
Bryan Beaudreault 2022-03-25 18:46:33 -04:00 committed by sunhelly
parent c41c18bb8d
commit cfd0a1786a
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ public abstract class RegionServerCallable<T, S> implements RetryingCallable<T>
@Override
public String getExceptionMessageAdditionalDetail() {
return "row '" + Bytes.toString(row) + "' on table '" + tableName + "' at " + location;
return "row '" + Bytes.toStringBinary(row) + "' on table '" + tableName + "' at " + location;
}
@Override