Skip to content

Commit 5c5d0c2

Browse files
Fixed run subcommand due to --cluster-mode changes (#12)
* [fix] Fixed run subcommand due to --cluster-mode changes
1 parent 9cc4a8e commit 5c5d0c2

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "redisbench-admin"
3-
version = "0.1.14"
3+
version = "0.1.15"
44
description = "Redis benchmark run helper. A wrapper around Redis and Redis Modules benchmark tools ( ftsb_redisearch, memtier_benchmark, redis-benchmark, aibench, etc... )."
55
authors = ["filipecosta90 <[email protected]>"]
66
readme = "README.md"

redisbench_admin/run/run.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -126,12 +126,8 @@ def run_command_logic(args):
126126
input_file = run_stages_inputs["setup"]
127127
benchmark_output_dict["setup"][setup_run_key] = run_ftsb_redisearch(args.redis_url, benchmark_tool_path,
128128
setup_run_json_output_fullpath,
129-
<<<<<<< HEAD
130129
options, input_file, workers,
131130
pipeline, oss_cluster_mode)
132-
=======
133-
options, input_file, workers, pipeline)
134-
>>>>>>> master
135131
progress.update()
136132

137133
######################
@@ -143,12 +139,8 @@ def run_command_logic(args):
143139

144140
benchmark_output_dict["benchmark"][benchmark_run_key] = run_ftsb_redisearch(args.redis_url, benchmark_tool_path,
145141
benchmark_run_json_output_fullpath,
146-
<<<<<<< HEAD
147142
options, input_file, workers,
148143
pipeline, oss_cluster_mode)
149-
=======
150-
options, input_file, workers, pipeline)
151-
>>>>>>> master
152144

153145
if benchmark_repetitions_require_teardown is True or repetition == args.repetitions:
154146
print("Running tear down steps...")

0 commit comments

Comments
 (0)