Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
waahm7 committed Aug 13, 2024
1 parent 7a40d7f commit c2e4137
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runners/s3-benchrunner-rust/src/transfer_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ impl TransferManagerRunner {
};
let random_data_for_upload: Bytes = {
let mut rng = fastrand::Rng::new();
let data: Vec<u8> = repeat_with(|| rng.u8(..)).take(10_000).collect();
let data: Vec<u8> = repeat_with(|| rng.u8(..)).take(upload_data_size).collect();
data.into()
};

Expand Down

0 comments on commit c2e4137

Please sign in to comment.