test: [skip e2e]remove secure=True in connections (#38779)

Signed-off-by: zhuwenxing <wenxing.zhu@zilliz.com>
pull/38825/head
zhuwenxing 2024-12-27 16:58:50 +08:00 committed by GitHub
parent 4ba0ed3178
commit d433b754ce
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 2 deletions

View File

@ -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: