Skip to content

Commit eeb6ddc

Browse files
committed
test_scylla_cloud: align with ccm
ccm had implemention of multi dc support for sni_proxy and changed the `sni_proxy_docker_id` to a list `sni_proxy_docker_ids` since the code in the test was using the new list, the sni_proxy was stop and removed, causing the next test to fail, since it would reuse the sni_proxy
1 parent cb2f91e commit eeb6ddc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/standard/test_scylla_cloud.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def start_cluster_with_proxy(self):
4141

4242
docker_id, listen_address, listen_port = \
4343
start_sni_proxy(ccm_cluster.get_path(), nodes_info=nodes_info, listen_port=sni_port)
44-
ccm_cluster.sni_proxy_docker_id = docker_id
44+
ccm_cluster.sni_proxy_docker_ids = [docker_id]
4545
ccm_cluster.sni_proxy_listen_port = listen_port
4646
ccm_cluster._update_config()
4747

0 commit comments

Comments
 (0)