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:
parent
92633dcd08
commit
878c81346c
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue