Skip to content

Commit

Permalink
Add check option for paxos example to maintain bench (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffa5 committed Apr 14, 2024
1 parent 135dca8 commit 8e56cef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/paxos.rs
Expand Up @@ -358,7 +358,7 @@ fn main() -> Result<(), pico_args::Error> {

let mut args = pico_args::Arguments::from_env();
match args.subcommand()?.as_deref() {
Some("check-bfs") => {
Some("check-bfs") | Some("check") => {
let client_count = args.opt_free_from_str()?.unwrap_or(2);
let network = args
.opt_free_from_str()?
Expand Down

0 comments on commit 8e56cef

Please sign in to comment.