Skip to content
Merged
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "redisbench-admin"
version = "0.1.20"
version = "0.1.21"
description = "Redis benchmark run helper. A wrapper around Redis and Redis Modules benchmark tools ( ftsb_redisearch, memtier_benchmark, redis-benchmark, aibench, etc... )."
authors = ["filipecosta90 <filipecosta.90@gmail.com>"]
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions redisbench_admin/run/ftsb_redisearch/ftsb_redisearch.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ def run_ftsb_redisearch(redis_url, ftsb_redisearch_path, setup_run_json_output_f
"--pipeline={}".format(pipeline),
"--json-out-file={}".format(setup_run_json_output_fullpath)]
if max_rps > 0:
ftsb_args += ["--max-rps", max_rps]
ftsb_args += ["--max-rps={}".format(max_rps)]
if requests > 0:
ftsb_args += ["--requests", requests]
ftsb_args += ["--requests={}".format(requests)]
if oss_cluster_mode:
ftsb_args += ["--cluster-mode"]

Expand Down