HBASE-26876 Use toStringBinary for rowkey in RegionServerCallable error string (#4269)
Signed-off-by: Xiaolin Ha <haxiaolin@apache.org>
This commit is contained in:
parent
c41c18bb8d
commit
cfd0a1786a
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue