File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
hbase-server/src/main/java/org/apache/hadoop/hbase/util Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,6 @@ public class RegionMover extends AbstractHBaseTool implements Closeable {
8787 public static final int DEFAULT_MOVE_RETRIES_MAX = 5 ;
8888 public static final int DEFAULT_MOVE_WAIT_MAX = 60 ;
8989 public static final int DEFAULT_SERVERSTART_WAIT_MAX = 180 ;
90- private final RackManager rackManager ;
9190
9291 private static final Logger LOG = LoggerFactory .getLogger (RegionMover .class );
9392
@@ -103,6 +102,7 @@ public class RegionMover extends AbstractHBaseTool implements Closeable {
103102 private int port ;
104103 private Connection conn ;
105104 private Admin admin ;
105+ private RackManager rackManager ;
106106
107107 private RegionMover (RegionMoverBuilder builder ) throws IOException {
108108 this .hostname = builder .hostname ;
@@ -125,7 +125,6 @@ private RegionMover(RegionMoverBuilder builder) throws IOException {
125125 }
126126
127127 private RegionMover () {
128- rackManager = new RackManager (conf );
129128 }
130129
131130 @ Override
You can’t perform that action at this time.
0 commit comments