This is an automated email from the ASF dual-hosted git repository. yihua pushed a commit to branch release-0.14.1-spark35-scala213 in repository https://gitbox.apache.org/repos/asf/hudi.git
commit b0b83a2e9253246b09263e992db52f011138a37e Author: Lin Liu <[email protected]> AuthorDate: Mon Feb 5 15:14:43 2024 -0800 [HUDI-7375] Disable a flaky test method (#10627) Which is caused by issues from underlying MiniHDFS. --- .../java/org/apache/hudi/common/functional/TestHoodieLogFormat.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hudi-common/src/test/java/org/apache/hudi/common/functional/TestHoodieLogFormat.java b/hudi-common/src/test/java/org/apache/hudi/common/functional/TestHoodieLogFormat.java index 601f83101c9..bf9106b8061 100755 --- a/hudi-common/src/test/java/org/apache/hudi/common/functional/TestHoodieLogFormat.java +++ b/hudi-common/src/test/java/org/apache/hudi/common/functional/TestHoodieLogFormat.java @@ -78,6 +78,7 @@ import org.junit.jupiter.api.AfterAll; import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.TestInfo; import org.junit.jupiter.api.io.TempDir; @@ -1900,6 +1901,7 @@ public class TestHoodieLogFormat extends HoodieCommonTestHarness { 0, 0, Option.empty()); } + @Disabled("HUDI-7375") @ParameterizedTest @MethodSource("testArguments") public void testLogReaderWithDifferentVersionsOfDeleteBlocks(ExternalSpillableMap.DiskMapType diskMapType,
