HDFS-15471. TestHDFSContractMultipartUploader failing (#2252)
Contributed by Steve Loughran (Was: broken by Steve Loughran)
This commit is contained in:
parent
bfd99f31fd
commit
c392d9022a
@ -807,12 +807,17 @@ public void testConcurrentUploads() throws Throwable {
|
||||
|
||||
// now upload part 2.
|
||||
complete(file, upload2, partHandles2);
|
||||
// and await the visible length to match
|
||||
eventually(timeToBecomeConsistentMillis(),
|
||||
() -> verifyFileLength(file, size2),
|
||||
new LambdaTestUtils.ProportionalRetryInterval(
|
||||
CONSISTENCY_INTERVAL,
|
||||
timeToBecomeConsistentMillis()));
|
||||
|
||||
// and await the visible length to match, if this FS is not
|
||||
// consistent.
|
||||
final int consistencyDelay = timeToBecomeConsistentMillis();
|
||||
if (consistencyDelay > 0) {
|
||||
eventually(consistencyDelay,
|
||||
() -> verifyFileLength(file, size2),
|
||||
new LambdaTestUtils.ProportionalRetryInterval(
|
||||
CONSISTENCY_INTERVAL,
|
||||
consistencyDelay));
|
||||
}
|
||||
|
||||
verifyContents(file, digest2, size2);
|
||||
}
|
||||
|
@ -35,7 +35,7 @@ public class TestHDFSContractMultipartUploader extends
|
||||
AbstractContractMultipartUploaderTest {
|
||||
|
||||
protected static final Logger LOG =
|
||||
LoggerFactory.getLogger(AbstractContractMultipartUploaderTest.class);
|
||||
LoggerFactory.getLogger(TestHDFSContractMultipartUploader.class);
|
||||
|
||||
@BeforeClass
|
||||
public static void createCluster() throws IOException {
|
||||
|
Loading…
Reference in New Issue
Block a user