Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix setTtl workflow and ttlbucket bugs #16933

Merged
merged 17 commits into from
Mar 13, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update core/server/master/src/main/java/alluxio/master/file/meta/TtlB…
…ucket.java

Co-authored-by: Jiacheng Liu <jiacheliu3@gmail.com>
  • Loading branch information
lucyge2022 and jiacheliu3 authored Mar 10, 2023
commit 014a84f756c7152376d905e64f85777e54cbd50e
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public void addInode(Inode inode) {
* Adds an inode to the bucket with a specific left retry number.
*
* @param inode the inode to be added
* @param numOfRetry num of retry left when added to the ttlbucket
* @param numOfRetry num of retries left when added to the ttlbucket
*/
public void addInode(Inode inode, int numOfRetry) {
mInodeToRetryMap.compute(inode.getId(), (k, v) -> {
Expand Down