Skip to content

Commit 4684c16

Browse files
[add] Continue on error during reshard (#21)
1 parent 14d2fbe commit 4684c16

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
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.24"
3+
version = "0.1.25"
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/ftsb_redisearch/ftsb_redisearch.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ def run_ftsb_redisearch(redis_url, ftsb_redisearch_path, setup_run_json_output_f
4949
ftsb_args += ["--requests={}".format(requests)]
5050
if oss_cluster_mode:
5151
ftsb_args += ["--cluster-mode"]
52+
ftsb_args += ["--continue-on-error"]
5253

5354
ftsb_process = subprocess.Popen(args=ftsb_args, **options)
5455
if ftsb_process.poll() is not None:

0 commit comments

Comments
 (0)