Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ibc committed Aug 12, 2024
1 parent 669ddca commit 6100cd1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rust/src/worker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ impl Inner {
}

if !enable_liburing {
spawn_args.push("--disableLiburing".to_string());
spawn_args.push("--disableLiburing=true".to_string());
}

let id = WorkerId::new();
Expand Down
2 changes: 1 addition & 1 deletion worker/src/Settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ void Settings::SetConfiguration(int argc, char* argv[])
{
if (!optarg)
{
MS_THROW_TYPE_ERROR("missing value in command line argument: %s", optarg);
MS_THROW_TYPE_ERROR("missing value in command line argument in option '%c'", c);
}

switch (c)
Expand Down

0 comments on commit 6100cd1

Please sign in to comment.