HBASE-16739 Timed out exception message should include encoded region name

This commit is contained in:
tedyu 2016-10-03 06:44:58 -07:00
parent a4426a7c2d
commit 252d7fae0a
1 changed files with 2 additions and 1 deletions

View File

@ -5324,7 +5324,8 @@ public class HRegion implements HeapSize, PropagatingConfigurationObserver, Regi
result = null;
// Clean up the counts just in case this was the thing keeping the context alive.
rowLockContext.cleanUp();
throw new IOException("Timed out waiting for lock for row: " + rowKey);
throw new IOException("Timed out waiting for lock for row: " + rowKey + " in region "
+ getRegionInfo().getEncodedName());
}
rowLockContext.setThreadName(Thread.currentThread().getName());
return result;