Skip to content

Commit 80710ad

Browse files
authored
Fix for TypeError in self-coordinator (#224)
Replaced usage of redisbench_admin.run.common.execute_init_commands to newer redis_benchmarks_specification.__common__.runner.execute_init_commands
1 parent a4fa679 commit 80710ad

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

redis_benchmarks_specification/__self_contained_coordinator__/self_contained_coordinator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
extract_testsuites,
3333
reset_commandstats,
3434
exporter_datasink_common,
35+
execute_init_commands,
3536
)
3637
from redis_benchmarks_specification.__runner__.runner import (
3738
print_results_table_stdout,
@@ -54,7 +55,6 @@
5455
from redisbench_admin.run.common import (
5556
get_start_time_vars,
5657
prepare_benchmark_parameters,
57-
execute_init_commands,
5858
)
5959
from redisbench_admin.run.grafana import generate_artifacts_table_grafana_redis
6060
from redisbench_admin.run.redistimeseries import (

utils/tests/test_data/test-suites/redis-benchmark-full-suite-1Mkeys-100B.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ description: "Runs the default redis-benchmark test suite, for a keyspace length
44
with a data size of 100 Bytes for each key. On total 50 concurrent connections
55
will be used, sending 1M requests."
66
dbconfig:
7-
- configuration-parameters:
8-
- save: '""'
7+
configuration-parameters:
8+
save: '""'
99
tested-commands:
1010
- PING
1111
- SET

0 commit comments

Comments
 (0)