Skip to content

Commit

Permalink
test: [skip e2e]remove secure=True in connections (milvus-io#38779)
Browse files Browse the repository at this point in the history
Signed-off-by: zhuwenxing <[email protected]>
  • Loading branch information
zhuwenxing authored Dec 27, 2024
1 parent 4ba0ed3 commit d433b75
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/python_client/chaos/test_chaos_apply.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit d433b75

Please sign in to comment.