YARN-9325. TestQueueManagementDynamicEditPolicy fails intermittent. Contributed by Prabhu Joseph.

This commit is contained in:
Weiwei Yang 2019-04-23 14:21:13 +08:00
parent f4ab9370f5
commit 1c8046d67e

View File

@ -118,7 +118,7 @@ private void waitForPolicyState(float expectedVal,
nodeLabel, int timesec) throws InterruptedException {
long start = System.currentTimeMillis();
while (System.currentTimeMillis() - start < timesec * 1000) {
if (Float.compare(expectedVal, queueManagementPolicy
if (Math.abs(expectedVal - queueManagementPolicy
.getAbsoluteActivatedChildQueueCapacity(nodeLabel)) > EPSILON) {
Thread.sleep(100);
} else {