HBASE-20808 (Addendum) Remove duplicate calls for cancelling of chores
Signed-off-by: Reid Chan <reidchan@apache.org>
This commit is contained in:
parent
3ed9350233
commit
927ac8228f
|
@ -1045,10 +1045,6 @@ public class HRegionServer extends HasThread implements
|
||||||
if (this.hMemManager != null) this.hMemManager.stop();
|
if (this.hMemManager != null) this.hMemManager.stop();
|
||||||
if (this.cacheFlusher != null) this.cacheFlusher.interruptIfNecessary();
|
if (this.cacheFlusher != null) this.cacheFlusher.interruptIfNecessary();
|
||||||
if (this.compactSplitThread != null) this.compactSplitThread.interruptIfNecessary();
|
if (this.compactSplitThread != null) this.compactSplitThread.interruptIfNecessary();
|
||||||
if (this.compactionChecker != null) this.compactionChecker.cancel(true);
|
|
||||||
if (this.healthCheckChore != null) this.healthCheckChore.cancel(true);
|
|
||||||
if (this.nonceManagerChore != null) this.nonceManagerChore.cancel(true);
|
|
||||||
if (this.storefileRefresher != null) this.storefileRefresher.cancel(true);
|
|
||||||
sendShutdownInterrupt();
|
sendShutdownInterrupt();
|
||||||
|
|
||||||
// Stop the quota manager
|
// Stop the quota manager
|
||||||
|
|
Loading…
Reference in New Issue