Skip to content

Commit

Permalink
[add] Continue on error during reshard (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
filipecosta90 authored Oct 18, 2020
1 parent 14d2fbe commit 4684c16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
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.24"
version = "0.1.25"
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
1 change: 1 addition & 0 deletions redisbench_admin/run/ftsb_redisearch/ftsb_redisearch.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ def run_ftsb_redisearch(redis_url, ftsb_redisearch_path, setup_run_json_output_f
ftsb_args += ["--requests={}".format(requests)]
if oss_cluster_mode:
ftsb_args += ["--cluster-mode"]
ftsb_args += ["--continue-on-error"]

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

0 comments on commit 4684c16

Please sign in to comment.