From 91cc66a67b7563662a7e9b63a74ac2c47443fc54 Mon Sep 17 00:00:00 2001 From: ThreadDao Date: Fri, 17 Sep 2021 14:33:50 +0800 Subject: [PATCH] Fix reconnect func call (#8133) Signed-off-by: ThreadDao --- tests/python_client/chaos/test_chaos.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/python_client/chaos/test_chaos.py b/tests/python_client/chaos/test_chaos.py index 8b07201b34..3c4a92165d 100644 --- a/tests/python_client/chaos/test_chaos.py +++ b/tests/python_client/chaos/test_chaos.py @@ -164,7 +164,7 @@ class TestChaos(TestChaosBase): # reconnect if needed sleep(constants.WAIT_PER_OP*2) - cc.reconnect(connections, self.host, self.port) + cc.reconnect(connections, alias='default') # reset counting again cc.reset_counting(self.health_checkers)