Skip to content

Commit

Permalink
looks like rust prefer the other way for comments
Browse files Browse the repository at this point in the history
  • Loading branch information
TingDaoK committed Nov 14, 2024
1 parent 6f97d88 commit f375ff2
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 @@ -231,7 +231,7 @@ impl RunBenchmark for TransferManagerRunner {
return Err(SkipBenchmarkError("checksums not yet implemented".to_string()).into());
}
if self.transfer_path != None {
/* Use the objects API to download/upload directory directly */
// Use the objects API to download/upload directory directly
match workload_config.tasks[0].action {
TaskAction::Download => {
self.download_objects()
Expand All @@ -245,7 +245,7 @@ impl RunBenchmark for TransferManagerRunner {
}
}
} else {
/* Iterate through all the tasks to download/upload each object. */
// Iterate through all the tasks to download/upload each object.
for i in 0..workload_config.tasks.len() {
let task = self.clone().run_task(i);
task_set.spawn(task.instrument(tracing::Span::current()));
Expand Down

0 comments on commit f375ff2

Please sign in to comment.