HBASE-3381 -- correction

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1051726 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2010-12-22 01:13:41 +00:00
parent 92633dcd08
commit 878c81346c
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ public class OpenRegionHandler extends EventHandler {
}
// Is thread still alive? We may have left above loop because server is
// stopping or we timed out the edit. Is so, interrupt it.
if (t.isAlive()) {
if (t.isAlive() && !signaller.get()) {
LOG.debug("Interrupting thread " + t);
t.interrupt();
}