Skip to content

Commit a287831

Browse files
Fixed generate_remote_standalone_redis_cmd bad operand (#363)
1 parent 25e61f4 commit a287831

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "redisbench-admin"
3-
version = "0.9.6"
3+
version = "0.9.7"
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]>","Redis Performance Group <[email protected]>"]
66
readme = "README.md"

redisbench_admin/run_remote/standalone.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,8 @@ def generate_remote_standalone_redis_cmd(
114114
logfile, temporary_dir
115115
)
116116
if enable_redis_7_config_directives:
117-
initial_redis_cmd = +" --enable-debug-command {} ".format(enable_debug_command)
117+
extra_str = " --enable-debug-command {} ".format(enable_debug_command)
118+
initial_redis_cmd = initial_redis_cmd + extra_str
118119
full_logfile = "{}/{}".format(temporary_dir, logfile)
119120
if redis_configuration_parameters is not None:
120121
for (

0 commit comments

Comments
 (0)