Skip to content

Commit

Permalink
remove debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
waahm7 committed Oct 4, 2024
1 parent 9c8b024 commit ca0697e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions runners/s3-benchrunner-rust/src/transfer_manager.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use std::{cmp::min, sync::Arc, time::Instant};
use std::{cmp::min, sync::Arc};

use anyhow::Context;
use async_trait::async_trait;
Expand Down Expand Up @@ -54,9 +54,7 @@ impl TransferManagerRunner {
.try_into()
.unwrap()
};
let start = Instant::now();
let random_data_for_upload = new_random_bytes(upload_data_size);
println!("random: {}s", start.elapsed().as_secs_f64());

let s3_client = aws_sdk_s3::Client::new(&sdk_config);
let tm_config = aws_s3_transfer_manager::Config::builder()
Expand Down

0 comments on commit ca0697e

Please sign in to comment.