Skip to content

Commit

Permalink
Support UDS (Unix domain sockets (Unix systems only))
Browse files Browse the repository at this point in the history
Signed-off-by: junjie.jiang <[email protected]>
  • Loading branch information
junjiejiangjjj committed Apr 9, 2024
1 parent 722d2b5 commit 5d185f0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pymilvus/orm/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,8 @@ def __get_full_address(
return address, None

if uri != "":
if uri.startswith("unix:"):
return uri, None
address, parsed = self.__parse_address_from_uri(uri)
return address, parsed

Expand Down

0 comments on commit 5d185f0

Please sign in to comment.