Browse Source
Fix issue
Signed-off-by: Jael Gu <mengjia.gu@zilliz.com>
main
1 changed files with
4 additions and
0 deletions
-
milvus_client.py
|
@ -54,6 +54,10 @@ class MilvusClient(PyOperator): |
|
|
else: |
|
|
else: |
|
|
self._connection_args['secure'] = True |
|
|
self._connection_args['secure'] = True |
|
|
|
|
|
|
|
|
|
|
|
self._connection_args['user'] = user |
|
|
|
|
|
self._connection_args['password'] = password |
|
|
|
|
|
self._connection_args['token'] = token |
|
|
|
|
|
|
|
|
connections.connect(**self._connection_args) |
|
|
connections.connect(**self._connection_args) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|