Skip to content

Commit a21e11e

Browse files
authored
Remove left-over parameter (#1578)
Removes accidentially forgotten parameter, fixing the prefetcher and client benchmarks to be executable again. --- By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license and I agree to the terms of the [Developer Certificate of Origin (DCO)](https://developercertificate.org/). Signed-off-by: Christian Hagemeier <chagem@amazon.com>
1 parent 73c9de1 commit a21e11e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

benchmark/benchmarks/client_benchmark.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def get_command(self) -> Command:
8181

8282
log.info("Client benchmark command prepared with args: %s", subprocess_args)
8383

84-
return Command(args=subprocess_args, env=client_env, capture_output=True)
84+
return Command(args=subprocess_args, env=client_env)
8585

8686
def post_process(self, result: CommandResult) -> Dict[str, Any]:
8787
if result.returncode != 0:

benchmark/benchmarks/prefetch_benchmark.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def get_command(self) -> Command:
7878

7979
log.info("Prefetch benchmark command prepared with args: %s", subprocess_args)
8080

81-
return Command(args=subprocess_args, env=prefetch_env, capture_output=True)
81+
return Command(args=subprocess_args, env=prefetch_env)
8282

8383
def post_process(self, result: CommandResult) -> Dict[str, Any]:
8484
if result.returncode != 0:

0 commit comments

Comments
 (0)