Skip to content

Commit

Permalink
[876] Unite comments
Browse files Browse the repository at this point in the history
  • Loading branch information
idruzhitskiy committed Nov 28, 2024
1 parent fc888e8 commit 34000bb
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions bob-backend/src/pearl/holder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -398,15 +398,13 @@ impl Holder {
builder.enable_aio(ioring)
}
Err(e) => {
warn!("bob will start with standard sync fs io api");
warn!("can't start with AIO, cause: {}", e);
warn!("bob will start with standard sync fs io api, can't start with AIO, cause: {}", e);
self.config.set_aio(false);
builder
}
}
} else {
trace!("bob will start with standard sync fs io api");
trace!("cause: disabled in config");
trace!("bob will start with standard sync fs io api, cause: disabled in config");
builder
};
builder
Expand Down

0 comments on commit 34000bb

Please sign in to comment.