Skip to content

Commit

Permalink
dead_code
Browse files Browse the repository at this point in the history
  • Loading branch information
waahm7 committed Oct 10, 2024
1 parent 45e85f8 commit dbe1862
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runners/s3-benchrunner-rust/src/transfer_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ impl TransferManagerRunner {
.with_context(|| format!("failed starting download: {key}"))?;

// if files_on_disk: open file for writing
let mut dest_file = if self.config().workload.files_on_disk {
let mut _dest_file = if self.config().workload.files_on_disk {
let file = File::create(key)
.instrument(info_span!("file-open"))
.await
Expand All @@ -122,7 +122,7 @@ impl TransferManagerRunner {
//println!("");
//println!("----------------------------------------------------------------------------------------");
let mut total_size = 0u64;
let mut instant = Instant::now();
let mut _instant = Instant::now();
while let Some(chunk_result) = download_handle
.body_mut()
.next()
Expand Down

0 comments on commit dbe1862

Please sign in to comment.