Skip to content

Commit 3e0a649

Browse files
committed
Fix Cluster TLS port
1 parent 1d00075 commit 3e0a649

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def cluster_tests(c, uvloop=False, protocol=2, profile=False):
7070
"""Run tests against a redis cluster"""
7171
profile_arg = "--profile" if profile else ""
7272
cluster_url = "redis://localhost:16379/0"
73-
cluster_tls_url = "rediss://localhost:17379/0"
73+
cluster_tls_url = "rediss://localhost:27379/0"
7474
if uvloop:
7575
run(
7676
f"pytest {profile_arg} --protocol={protocol} --cov=./ --cov-report=xml:coverage_cluster_resp{protocol}_uvloop.xml -m 'not onlynoncluster and not redismod and not graph' --redis-url={cluster_url} --redis-ssl-url={cluster_tls_url} --junit-xml=cluster-resp{protocol}-uvloop-results.xml --uvloop"

0 commit comments

Comments
 (0)