From d433b754cec591695ea58fe7966f44e85902dbad Mon Sep 17 00:00:00 2001 From: zhuwenxing Date: Fri, 27 Dec 2024 16:58:50 +0800 Subject: [PATCH] test: [skip e2e]remove secure=True in connections (#38779) Signed-off-by: zhuwenxing --- tests/python_client/chaos/test_chaos_apply.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/python_client/chaos/test_chaos_apply.py b/tests/python_client/chaos/test_chaos_apply.py index f1367803bf..76789da9a7 100644 --- a/tests/python_client/chaos/test_chaos_apply.py +++ b/tests/python_client/chaos/test_chaos_apply.py @@ -19,8 +19,7 @@ class TestChaosApply: @pytest.fixture(scope="function", autouse=True) def init_env(self, host, port, user, password, milvus_ns): if user and password: - # log.info(f"connect to {host}:{port} with user {user} and password {password}") - connections.connect('default', host=host, port=port, user=user, password=password, secure=True) + connections.connect('default', host=host, port=port, user=user, password=password) else: connections.connect('default', host=host, port=port) if connections.has_connection("default") is False: