aboutsummaryrefslogtreecommitdiff
path: root/scenarios/fragments/s3concurrent.py
diff options
context:
space:
mode:
Diffstat (limited to 'scenarios/fragments/s3concurrent.py')
-rw-r--r--scenarios/fragments/s3concurrent.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scenarios/fragments/s3concurrent.py b/scenarios/fragments/s3concurrent.py
index 1431e0b..f1cb96d 100644
--- a/scenarios/fragments/s3concurrent.py
+++ b/scenarios/fragments/s3concurrent.py
@@ -3,7 +3,7 @@ from os.path import exists
from pathlib import Path
from fragments import shared, garage
-s3bin = Path(os.path.dirname(__file__)) / "../../benchmarks/s3lat/s3lat"
+s3bin = Path(os.path.dirname(__file__)) / "../../benchmarks/s3concurrent/s3concurrent"
def on_garage():
os.environ['AWS_ACCESS_KEY_ID'] = garage.key.access_key_id
@@ -11,6 +11,6 @@ def on_garage():
os.environ['ENDPOINT'] = "localhost:3900"
out = Path(shared.storage_path) / "s3concurrent.csv"
- shared.log(f"launching s3lat ({s3bin})")
+ shared.log(f"launching s3concurrent ({s3bin})")
shared.exec(f"{s3bin} > {out}")
shared.log(f"execution done, output written to {out}")