HDFS-9565. TestDistributedFileSystem.testLocatedFileStatusStorageIdsTypes is flaky due to race condition. (Contributed by Wei-Chiu Chuang)
This commit is contained in:
parent
8d278d8d2e
commit
72a3f649e4
|
@ -2501,6 +2501,9 @@ Release 2.8.0 - UNRELEASED
|
|||
|
||||
HDFS-9198. Coalesce IBR processing in the NN. (Daryn Sharp via umamahesh)
|
||||
|
||||
HDFS-9565. TestDistributedFileSystem.testLocatedFileStatusStorageIdsTypes
|
||||
is flaky due to race condition. (Wei-Chiu Chuang via Arpit Agarwal)
|
||||
|
||||
Release 2.7.3 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -830,6 +830,7 @@ public class TestDistributedFileSystem {
|
|||
final int repl = 2;
|
||||
DFSTestUtil.createFile(fs, testFile, blockSize, numBlocks * blockSize,
|
||||
blockSize, (short) repl, 0xADDED);
|
||||
DFSTestUtil.waitForReplication(fs, testFile, (short) repl, 30000);
|
||||
// Get the listing
|
||||
RemoteIterator<LocatedFileStatus> it = fs.listLocatedStatus(testFile);
|
||||
assertTrue("Expected file to be present", it.hasNext());
|
||||
|
|
Loading…
Reference in New Issue