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/10/27 14:01:52 UTC

[hbase] branch master updated: HBASE-26396 Remove duplicate thread creation during migrating rsgroup (#3795)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 8e7f78c  HBASE-26396 Remove duplicate thread creation during migrating rsgroup (#3795)
8e7f78c is described below

commit 8e7f78cb4492651418725b7c9cb6d2e419ad4a7a
Author: GeorryHuang <hu...@apache.org>
AuthorDate: Wed Oct 27 22:01:15 2021 +0800

    HBASE-26396 Remove duplicate thread creation during migrating rsgroup (#3795)
    
    Signed-off-by: Duo Zhang <zh...@apache.org>
---
 .../java/org/apache/hadoop/hbase/rsgroup/RSGroupInfoManagerImpl.java     | 1 -
 1 file changed, 1 deletion(-)

diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/rsgroup/RSGroupInfoManagerImpl.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/rsgroup/RSGroupInfoManagerImpl.java
index e4fad69..b13afef 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/rsgroup/RSGroupInfoManagerImpl.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/rsgroup/RSGroupInfoManagerImpl.java
@@ -280,7 +280,6 @@ final class RSGroupInfoManagerImpl implements RSGroupInfoManager {
         updateDefaultServers();
       }
     });
-    migrate();
   }
 
   static RSGroupInfoManager getInstance(MasterServices masterServices) throws IOException {