Skip to content

Commit 13540c8

Browse files
Fixed self_contained_coordinator r.ping() using 6379 port and not redis_proc_start_port (#109)
* Fixed self_contained_coordinator r.ping() using 6379 port and not redis_proc_start_port * Bumping version from 0.1.33 to 0.1.34
1 parent 4d525a0 commit 13540c8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "redis-benchmarks-specification"
3-
version = "0.1.33"
3+
version = "0.1.34"
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 <[email protected]>","Redis Performance Group <[email protected]>"]
66
readme = "Readme.md"

redis_benchmarks_specification/__self_contained_coordinator__/self_contained_coordinator.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ def process_self_contained_coordinator_stream(
502502
)
503503
redis_containers.append(container)
504504

505-
r = redis.StrictRedis(port=6379)
505+
r = redis.StrictRedis(port=redis_proc_start_port)
506506
r.ping()
507507
redis_pids = []
508508
first_redis_pid = r.info()["process_id"]

0 commit comments

Comments
 (0)