Skip to content

Commit 8d65eeb

Browse files
Supporting empty allowed-setups configuration parameter (#406)
1 parent 92ebb54 commit 8d65eeb

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-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.10.4"
3+
version = "0.10.5"
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 <filipecosta.90@gmail.com>","Redis Performance Group <performance@redis.com>"]
66
readme = "README.md"

redisbench_admin/run/args.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,8 @@ def common_run_args(parser):
193193
"--allowed-setups",
194194
type=str,
195195
default=SETUP,
196+
nargs="?",
197+
const="",
196198
help="Comma delimited allowed setups. By default all setups are allowed.",
197199
)
198200
parser.add_argument(

0 commit comments

Comments
 (0)