Skip to content

Commit

Permalink
HDFS-16168. Fix TestHDFSFileSystemContract.testAppend timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
secfree committed Dec 18, 2021
1 parent f544ef4 commit 1bfc3fb
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,12 @@ protected String getDefaultWorkingDirectory() {
return defaultWorkingDirectory;
}

@Test(timeout = 60000)
@Override
protected int getGlobalTimeout() {
return 60 * 1000;
}

@Test
public void testAppend() throws IOException {
AppendTestUtil.testAppend(fs, new Path("/testAppend/f"));
}
Expand Down

0 comments on commit 1bfc3fb

Please sign in to comment.