Skip to content

Commit

Permalink
fix: [GoSDK] Use client config db name when connect (#39662)
Browse files Browse the repository at this point in the history
Related to #34137

Signed-off-by: Congqi Xia <[email protected]>
  • Loading branch information
congqixia authored Feb 7, 2025
1 parent 74890da commit d7c07d1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/milvusclient/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ func New(ctx context.Context, config *ClientConfig) (*Client, error) {
}

c := &Client{
config: config,
config: config,
currentDB: config.DBName,
}

// Parse remote address.
Expand Down

0 comments on commit d7c07d1

Please sign in to comment.