You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by zh...@apache.org on 2021/01/20 15:37:47 UTC

[hbase] branch branch-2.4 updated: HBASE-25509 fix typo when resolving conflicts

This is an automated email from the ASF dual-hosted git repository.

zhangduo pushed a commit to branch branch-2.4
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2.4 by this push:
     new 2192737  HBASE-25509 fix typo when resolving conflicts
2192737 is described below

commit 219273768e45f621281cad74174fe97c1ea37062
Author: Duo Zhang <zh...@apache.org>
AuthorDate: Wed Jan 20 23:35:49 2021 +0800

    HBASE-25509 fix typo when resolving conflicts
---
 hbase-server/src/main/java/org/apache/hadoop/hbase/master/HMaster.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/HMaster.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/HMaster.java
index 18419ab..0b8d102 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/HMaster.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/HMaster.java
@@ -1513,7 +1513,7 @@ public class HMaster extends HRegionServer implements MasterServices {
   private void stopChores() {
     if (getChoreService() != null) {
       shutdownChore(expiredMobFileCleanerChore);
-      shutdownChore(expiredMobFileCleanerChore);
+      shutdownChore(mobCompactChore);
       shutdownChore(balancerChore);
       if (regionNormalizerManager != null) {
         shutdownChore(regionNormalizerManager.getRegionNormalizerChore());