YARN-4566. Fix test failure in TestMiniYarnClusterNodeUtilization. (Takashi Ohnishi via rohithsharmaks)
(cherry picked from commit e0b14f26f5
)
Conflicts:
hadoop-yarn-project/CHANGES.txt
This commit is contained in:
parent
1a38dd9cee
commit
74831973cb
|
@ -214,8 +214,10 @@ public class TestMiniYarnClusterNodeUtilization {
|
||||||
// We check if the nodeUtilization is up to date
|
// We check if the nodeUtilization is up to date
|
||||||
for (int i=0; i<100; i++) {
|
for (int i=0; i<100; i++) {
|
||||||
for (RMNode ni : rmContext.getRMNodes().values()) {
|
for (RMNode ni : rmContext.getRMNodes().values()) {
|
||||||
if (ni.getNodeUtilization().equals(nodeUtilization)) {
|
if (ni.getNodeUtilization() != null) {
|
||||||
break;
|
if (ni.getNodeUtilization().equals(nodeUtilization)) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Thread.sleep(100);
|
Thread.sleep(100);
|
||||||
|
|
Loading…
Reference in New Issue