HBASE-7560 TestCompactionState failures
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1434045 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9723ea9cdf
commit
5bc5ee613f
|
@ -167,14 +167,11 @@ public class TestCompactionState {
|
|||
assertEquals(CompactionState.NONE, state);
|
||||
}
|
||||
} else {
|
||||
curt = System.currentTimeMillis();
|
||||
waitTime = 20000;
|
||||
endt = curt + waitTime;
|
||||
// Wait until the compaction is done
|
||||
state = admin.getCompactionState(table);
|
||||
while (state != CompactionState.NONE && curt < endt) {
|
||||
Thread.sleep(10);
|
||||
state = admin.getCompactionState(table);
|
||||
curt = System.currentTimeMillis();
|
||||
}
|
||||
// Now, compaction should be done.
|
||||
assertEquals(CompactionState.NONE, state);
|
||||
|
@ -234,5 +231,4 @@ public class TestCompactionState {
|
|||
puts.clear();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue