Skip to content

Commit 58a7111

Browse files
Fixed redis 7 related config --enable-debug-command (#361)
1 parent e1b5fa2 commit 58a7111

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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.9.4"
3+
version = "0.9.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 <[email protected]>","Redis Performance Group <[email protected]>"]
66
readme = "README.md"

redisbench_admin/run_remote/standalone.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def generate_remote_standalone_redis_cmd(
106106
temporary_dir,
107107
modules_configuration_parameters_map,
108108
):
109-
initial_redis_cmd = "redis-server --save '' --logfile {} --dir {} --daemonize yes --protected-mode no".format(
109+
initial_redis_cmd = "redis-server --save '' --logfile {} --dir {} --daemonize yes --protected-mode no --enable-debug-command yes ".format(
110110
logfile, temporary_dir
111111
)
112112
full_logfile = "{}/{}".format(temporary_dir, logfile)

0 commit comments

Comments
 (0)