HBASE-7711 rowlock release problem with thread interruptions in batchMutate (Ted Yu)

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1441066 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Zhihong Yu 2013-01-31 17:08:59 +00:00
parent e2468f61f3
commit 8ab32498b9
1 changed files with 4 additions and 1 deletions

View File

@ -3131,7 +3131,10 @@ public class HRegion implements HeapSize { // , Writable{
+ Bytes.toStringBinary(row));
}
} catch (InterruptedException ie) {
// Empty
LOG.warn("internalObtainRowLock interrupted for row=" + Bytes.toStringBinary(row));
InterruptedIOException iie = new InterruptedIOException();
iie.initCause(ie);
throw iie;
}
}
}