Skip to content

Commit

Permalink
Disable flaky test dimension
Browse files Browse the repository at this point in the history
  • Loading branch information
Davis-Zhang-Onehouse committed Jan 17, 2025
1 parent baf141a commit f5b692d
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,12 @@ public void clean() throws IOException {
}

private static final List<Class> LOCK_PROVIDER_CLASSES = Arrays.asList(
InProcessLockProvider.class,
FileSystemBasedLockProvider.class);
// [HUDI-8887] Based on OS/docker container used, the underlying file system API might not support
// atomic operations which impairs the functionality of lock provider. Disable the test dimension to
// avoid false alarm in java CI.
// FileSystemBasedLockProvider.class,
InProcessLockProvider.class
);

private static final List<ConflictResolutionStrategy> CONFLICT_RESOLUTION_STRATEGY_CLASSES = Arrays.asList(
new SimpleConcurrentFileWritesConflictResolutionStrategy(),
Expand Down

0 comments on commit f5b692d

Please sign in to comment.