Skip to content

Commit

Permalink
HDFS-16168. Fix TestHDFSFileSystemContract.testAppend timeout (apache…
Browse files Browse the repository at this point in the history
  • Loading branch information
secfree authored and HarshitGupta11 committed Nov 28, 2022
1 parent 12d4851 commit 96a1c1b
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 96a1c1b

Please sign in to comment.