Skip to content

Commit

Permalink
Fix formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
adpeace committed Nov 18, 2024
1 parent 2a72c02 commit eed4bbd
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions mountpoint-s3/src/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -181,10 +181,12 @@ where
);
} else {
const DEFAULT_MAX_BACKGROUND: u16 = 64;
let max_background_result = config
.set_max_background(DEFAULT_MAX_BACKGROUND);
let max_background_result = config.set_max_background(DEFAULT_MAX_BACKGROUND);
if max_background_result.is_err() {
tracing::warn!("failed to set FUSE max_background to {}, using Kernel default", DEFAULT_MAX_BACKGROUND);
tracing::warn!(
"failed to set FUSE max_background to {}, using Kernel default",
DEFAULT_MAX_BACKGROUND
);
}
}

Expand Down

0 comments on commit eed4bbd

Please sign in to comment.