HBASE-24338 [Flakey Tests] NPE in TestRaceBetweenSCPAndDTP Addendum2: make same fix for TestRaceBetweenSCPAndTRSP but in a second place (addendum 1 got first place).
This commit is contained in:
parent
2c11d5a0a0
commit
bb3191c563
|
@ -133,19 +133,20 @@ public class TestRaceBetweenSCPAndTRSP {
|
|||
AssignmentManager am = UTIL.getMiniHBaseCluster().getMaster().getAssignmentManager();
|
||||
ServerName sn = am.getRegionStates().getRegionState(region).getServerName();
|
||||
|
||||
// Assign the CountDownLatches that get nulled in background threads else we NPE checking
|
||||
// the static.
|
||||
ARRIVE_REGION_OPENING = new CountDownLatch(1);
|
||||
CountDownLatch arriveRegionOpening = ARRIVE_REGION_OPENING;
|
||||
RESUME_REGION_OPENING = new CountDownLatch(1);
|
||||
// Assign to local variable because this static gets set to null in above running thread and
|
||||
// so can NPE when we check await later below.
|
||||
ARRIVE_GET_REGIONS_ON_SERVER = new CountDownLatch(1);
|
||||
CountDownLatch cdl = ARRIVE_GET_REGIONS_ON_SERVER;
|
||||
CountDownLatch arriveGetRegionsOnServer = ARRIVE_GET_REGIONS_ON_SERVER;
|
||||
RESUME_GET_REGIONS_ON_SERVER = new CountDownLatch(1);
|
||||
|
||||
Future<byte[]> moveFuture = am.moveAsync(new RegionPlan(region, sn, sn));
|
||||
ARRIVE_REGION_OPENING.await();
|
||||
arriveRegionOpening.await();
|
||||
|
||||
UTIL.getMiniHBaseCluster().killRegionServer(sn);
|
||||
cdl.await();
|
||||
arriveGetRegionsOnServer.await();
|
||||
RESUME_REGION_OPENING.countDown();
|
||||
|
||||
moveFuture.get();
|
||||
|
|
Loading…
Reference in New Issue