HBASE-12416 RegionServerCallable should report what host it was communicating with

This commit is contained in:
Nick Dimiduk 2014-11-03 14:21:25 -08:00
parent b5764a8e74
commit 008e990deb
1 changed files with 1 additions and 1 deletions

View File

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