This is an automated email from the ASF dual-hosted git repository. mthakur pushed a commit to branch branch-3.4 in repository https://gitbox.apache.org/repos/asf/hadoop.git
The following commit(s) were added to refs/heads/branch-3.4 by this push: new f0a24849e843 HADOOP-19188. Fix TestHarFileSystem and TestFilterFileSystem failing after bulk delete API got added. (#6848) f0a24849e843 is described below commit f0a24849e8436b70b28bd8aa31648bdd8b731b9e Author: Mukund Thakur <mtha...@cloudera.com> AuthorDate: Wed May 29 11:27:09 2024 -0500 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 --- .../src/test/java/org/apache/hadoop/fs/TestFilterFileSystem.java | 1 + .../src/test/java/org/apache/hadoop/fs/TestHarFileSystem.java | 2 ++ 2 files changed, 3 insertions(+) diff --git a/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/TestFilterFileSystem.java b/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/TestFilterFileSystem.java index 3d8ea0e826cf..1b42290cedc5 100644 --- a/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/TestFilterFileSystem.java +++ b/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/TestFilterFileSystem.java @@ -148,6 +148,7 @@ public class TestFilterFileSystem { FSDataOutputStream append(Path f, int bufferSize, Progressable progress, boolean appendToNewBlock) throws IOException; + BulkDelete createBulkDelete(Path path) throws IllegalArgumentException, IOException; } @Test diff --git a/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/TestHarFileSystem.java b/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/TestHarFileSystem.java index 0287b7ec1fb8..26d0361d6a25 100644 --- a/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/TestHarFileSystem.java +++ b/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/TestHarFileSystem.java @@ -257,6 +257,8 @@ public class TestHarFileSystem { Progressable progress, boolean appendToNewBlock) throws IOException; Path getEnclosingRoot(Path path) throws IOException; + + BulkDelete createBulkDelete(Path path) throws IllegalArgumentException, IOException; } @Test --------------------------------------------------------------------- To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org For additional commands, e-mail: common-commits-h...@hadoop.apache.org