HBASE-12416 RegionServerCallable should report what host it was communicating with
This commit is contained in:
parent
b5764a8e74
commit
008e990deb
|
@ -135,7 +135,7 @@ public abstract class RegionServerCallable<T> implements RetryingCallable<T> {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getExceptionMessageAdditionalDetail() {
|
public String getExceptionMessageAdditionalDetail() {
|
||||||
return "row '" + Bytes.toString(row) + "' on table '" + tableName;
|
return "row '" + Bytes.toString(row) + "' on table '" + tableName + "' at " + location;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue