Skip to content

Commit

Permalink
Fix error message
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Carl Jones <djonesoa@amazon.com>
  • Loading branch information
dannycjones committed Sep 24, 2024
1 parent 8464b47 commit e4574cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mountpoint-s3/src/bin/mock-mount-s3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ fn create_mock_client(args: &CliArgs) -> anyhow::Result<(ThroughputMockClient, T

let Some(max_throughput_gbps) = args.maximum_throughput_gbps else {
return Err(anyhow!(
"must set --max-throughput-gbps when using mock-mount-s3 binary"
"must set --maximum-throughput-gbps when using mock-mount-s3 binary"
));
};
tracing::info!("mock client target network throughput {max_throughput_gbps} Gbps");
Expand Down

0 comments on commit e4574cb

Please sign in to comment.