Skip to content

Commit 9ac4dee

Browse files
author
Filip Haltmayer
committed
f
Signed-off-by: Filip Haltmayer <filip.haltmayer@zilliz.com>
1 parent f734509 commit 9ac4dee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: pymilvus/orm/connections.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ def with_config(config: Tuple) -> bool:
318318

319319
# Make sure passed in None doesnt break
320320
user = '' if user is None else str(user)
321-
user = '' if password is None else str(password)
321+
password = '' if password is None else str(password)
322322

323323
# 1st Priority: connection from params
324324
if with_config(config):

0 commit comments

Comments
 (0)