Skip to content

Commit

Permalink
HBASE-26876 Use toStringBinary for rowkey in RegionServerCallable err…
Browse files Browse the repository at this point in the history
…or string (#4269)

Signed-off-by: Xiaolin Ha <haxiaolin@apache.org>
  • Loading branch information
bbeaudreault authored and sunhelly committed Mar 25, 2022
1 parent c41c18b commit cfd0a17
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -194,7 +194,7 @@ public void throwable(Throwable t, boolean retrying) {

@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
Expand Down

0 comments on commit cfd0a17

Please sign in to comment.