Skip to content

Commit 0c27b8b

Browse files
Fixed preload with password (#190)
* tox using self hosted runner. maxmemory check fix * Updated tox workflow description * Updated badge * Fixed preload with password * Bumping version from 0.1.64 to 0.1.65
1 parent 68769a2 commit 0c27b8b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-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 = "redis-benchmarks-specification"
3-
version = "0.1.64"
3+
version = "0.1.65"
44
description = "The Redis benchmarks specification describes the cross-language/tools requirements and expectations to foster performance and observability standards around redis related technologies. Members from both industry and academia, including organizations and individuals are encouraged to contribute."
55
authors = ["filipecosta90 <filipecosta.90@gmail.com>","Redis Performance Group <performance@redis.com>"]
66
readme = "Readme.md"

redis_benchmarks_specification/__runner__/runner.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -552,6 +552,7 @@ def process_self_contained_coordinator_stream(
552552
test_tls_key,
553553
test_tls_cacert,
554554
resp_version,
555+
password,
555556
)
556557
execute_init_commands(
557558
benchmark_config, r, dbconfig_keyname="dbconfig"
@@ -564,7 +565,7 @@ def process_self_contained_coordinator_stream(
564565
logging.info("Checking if there is a keyspace check being enforced")
565566
dbconfig_keyspacelen_check(
566567
benchmark_config,
567-
[r],
568+
redis_conns,
568569
)
569570

570571
if dry_run_include_preload is True:

0 commit comments

Comments
 (0)