Skip to content

Commit

Permalink
partners[milvus]: fix integration test issues (#26136)
Browse files Browse the repository at this point in the history
fix some integration test issues:
https://github.com/langchain-ai/langchain/actions/runs/10688447230/job/29628412258

Signed-off-by: ChengZi <[email protected]>
Co-authored-by: Erick Friis <[email protected]>
  • Loading branch information
zc277584121 and efriis authored Sep 6, 2024
1 parent 5c1ebd3 commit a03141a
Show file tree
Hide file tree
Showing 4 changed files with 652 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ def _create_connection_alias(self, connection_args: dict) -> str:
and (addr["address"] == given_address)
and ("user" in addr)
and (addr["user"] == tmp_user)
and (addr["db_name"] == db_name)
and (addr.get("db_name", "default") == db_name)
):
logger.debug("Using previous connection: %s", con[0])
return con[0]
Expand Down
Loading

0 comments on commit a03141a

Please sign in to comment.