YARN-9325. TestQueueManagementDynamicEditPolicy fails intermittent. Contributed by Prabhu Joseph.
This commit is contained in:
parent
f4ab9370f5
commit
1c8046d67e
|
@ -118,7 +118,7 @@ public class TestQueueManagementDynamicEditPolicy extends
|
||||||
nodeLabel, int timesec) throws InterruptedException {
|
nodeLabel, int timesec) throws InterruptedException {
|
||||||
long start = System.currentTimeMillis();
|
long start = System.currentTimeMillis();
|
||||||
while (System.currentTimeMillis() - start < timesec * 1000) {
|
while (System.currentTimeMillis() - start < timesec * 1000) {
|
||||||
if (Float.compare(expectedVal, queueManagementPolicy
|
if (Math.abs(expectedVal - queueManagementPolicy
|
||||||
.getAbsoluteActivatedChildQueueCapacity(nodeLabel)) > EPSILON) {
|
.getAbsoluteActivatedChildQueueCapacity(nodeLabel)) > EPSILON) {
|
||||||
Thread.sleep(100);
|
Thread.sleep(100);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue