Skip to content

Commit

Permalink
fix mills
Browse files Browse the repository at this point in the history
  • Loading branch information
xuyu committed Dec 10, 2024
1 parent d51d7a7 commit 3a0b504
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1935,7 +1935,7 @@ public boolean commitForceCompact() {
return options.get(COMMIT_FORCE_COMPACT);
}

public long commitMaxTimeout() {
public long commitTimeout() {
return options.get(COMMIT_MAX_TIMEOUT) == null
? Long.MAX_VALUE
: options.get(COMMIT_MAX_TIMEOUT).toMillis();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ public FileStoreCommitImpl newCommit(String commitUser, List<CommitCallback> cal
options.scanManifestParallelism(),
callbacks,
options.commitMaxRetries(),
options.commitMaxTimeout());
options.commitTimeout());
}

@Override
Expand Down

0 comments on commit 3a0b504

Please sign in to comment.