HADOOP-19188. Fix TestHarFileSystem and TestFilterFileSystem failing after bulk delete API got added. (#6848)

Follow up to: HADOOP-18679 Add API for bulk/paged delete of files and objects

Contributed by Mukund Thakur
This commit is contained in:
Mukund Thakur 2024-05-29 11:27:09 -05:00 committed by GitHub
parent ccb8ff4360
commit d107931fc7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 0 deletions

View File

@ -148,6 +148,7 @@ public Token<?>[] addDelegationTokens(String renewer, Credentials creds)
FSDataOutputStream append(Path f, int bufferSize, FSDataOutputStream append(Path f, int bufferSize,
Progressable progress, boolean appendToNewBlock) throws IOException; Progressable progress, boolean appendToNewBlock) throws IOException;
BulkDelete createBulkDelete(Path path) throws IllegalArgumentException, IOException;
} }
@Test @Test

View File

@ -257,6 +257,8 @@ FSDataOutputStream append(Path f, int bufferSize,
Progressable progress, boolean appendToNewBlock) throws IOException; Progressable progress, boolean appendToNewBlock) throws IOException;
Path getEnclosingRoot(Path path) throws IOException; Path getEnclosingRoot(Path path) throws IOException;
BulkDelete createBulkDelete(Path path) throws IllegalArgumentException, IOException;
} }
@Test @Test