HDFS-16392. Fix TestWebHdfsFileSystemContract#testResponseCode timeout (#3821)

This commit is contained in:
secfree 2021-12-22 10:44:07 +08:00 committed by GitHub
parent e2d6fd075d
commit cc07a5a186
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -91,6 +91,11 @@ public class TestWebHdfsFileSystemContract extends FileSystemContractBaseTest {
return defaultWorkingDirectory;
}
@Override
protected int getGlobalTimeout() {
return 60 * 1000;
}
/** HDFS throws AccessControlException
* when calling exist(..) on a path /foo/bar/file
* but /foo/bar is indeed a file in HDFS.
@ -396,7 +401,7 @@ public class TestWebHdfsFileSystemContract extends FileSystemContractBaseTest {
}
}
@Test(timeout = 60000)
@Test
public void testResponseCode() throws IOException {
final WebHdfsFileSystem webhdfs = (WebHdfsFileSystem)fs;
final Path root = new Path("/");