Revert "HBASE-24118 [Flakey Tests] TestCloseRegionWhileRSCrash"

Reverting in favor of adding an @Ignore on this test until
root cause of flakyness HBASE-24117 is addressed.

This reverts commit 9985c06647.
This commit is contained in:
stack 2020-04-06 12:35:52 -07:00
parent 1a627f0501
commit 0dc2712c90
1 changed files with 8 additions and 7 deletions

View File

@ -1,4 +1,4 @@
/*
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
@ -24,7 +24,9 @@ import org.apache.hadoop.hbase.HBaseTestingUtility;
import org.apache.hadoop.hbase.ProcedureTestUtil;
import org.apache.hadoop.hbase.ServerName;
import org.apache.hadoop.hbase.TableName;
import org.apache.hadoop.hbase.client.Put;
import org.apache.hadoop.hbase.client.RegionInfo;
import org.apache.hadoop.hbase.client.Table;
import org.apache.hadoop.hbase.master.HMaster;
import org.apache.hadoop.hbase.master.ServerManager;
import org.apache.hadoop.hbase.master.procedure.MasterProcedureEnv;
@ -190,11 +192,10 @@ public class TestCloseRegionWhileRSCrash {
// here we start a new master
UTIL.getMiniHBaseCluster().startMaster();
t.join();
// Make sure that the region is online, it may not be on the original target server, as we will
// set forceNewPlan to true if there is a server crash.
// DISABLED THIS CHECK. See HBASE-24117.
// try (Table table = UTIL.getConnection().getTable(TABLE_NAME)) {
// table.put(new Put(Bytes.toBytes(1)).addColumn(CF, Bytes.toBytes("cq"), Bytes.toBytes(1)));
// }
// Make sure that the region is online, it may not on the original target server, as we will set
// forceNewPlan to true if there is a server crash
try (Table table = UTIL.getConnection().getTable(TABLE_NAME)) {
table.put(new Put(Bytes.toBytes(1)).addColumn(CF, Bytes.toBytes("cq"), Bytes.toBytes(1)));
}
}
}