HDFS-15378. TestReconstructStripedFile#testErasureCodingWorkerXmitsWeight is failing on trunk. Contributed by hemanthboyina.
(cherry picked from commit 8db38c98a6
)
This commit is contained in:
parent
650bcaf694
commit
5d1127c8f3
|
@ -600,7 +600,8 @@ public class TestReconstructStripedFile {
|
||||||
DataNodeFaultInjector.set(oldInjector);
|
DataNodeFaultInjector.set(oldInjector);
|
||||||
for (final DataNode curDn : cluster.getDataNodes()) {
|
for (final DataNode curDn : cluster.getDataNodes()) {
|
||||||
GenericTestUtils.waitFor(() -> curDn.getXceiverCount() <= 1, 10, 60000);
|
GenericTestUtils.waitFor(() -> curDn.getXceiverCount() <= 1, 10, 60000);
|
||||||
assertEquals(0, curDn.getXmitsInProgress());
|
GenericTestUtils.waitFor(() -> curDn.getXmitsInProgress() == 0, 10,
|
||||||
|
2500);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue