We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here' s my code:
milvusClient, err := client.NewClient(ctx, client.Config{ Address: "xxx:443", Username: "root", Password: "Milvus", EnableTLSAuth: true, DialOptions: []grpc.DialOption{ grpc.WithTransportCredentials(creds), }, })
milvusClient, err := client.NewGrpcClient( ctx, "http://root:Milvus@xxx:443", grpc.WithTransportCredentials(creds), )
There are some error I' ve met:
Anybody ever met this above can help me? Thanks in advance!
No response
The text was updated successfully, but these errors were encountered:
If your need to set credential certification file, https://github.com/milvus-io/milvus-sdk-go/blob/master/examples/tls/tls.go this example might provide some help
Sorry, something went wrong.
This example cannot work, either. Thank you all the same!
No branches or pull requests
Is there an existing issue for this?
Is your feature request related to a problem? Please describe.
Here' s my code:
milvusClient, err := client.NewClient(ctx, client.Config{ Address: "xxx:443", Username: "root", Password: "Milvus", EnableTLSAuth: true, DialOptions: []grpc.DialOption{ grpc.WithTransportCredentials(creds), }, })
milvusClient, err := client.NewGrpcClient( ctx, "http://root:Milvus@xxx:443", grpc.WithTransportCredentials(creds), )
There are some error I' ve met:
Anybody ever met this above can help me? Thanks in advance!
Describe the solution you'd like.
No response
Describe an alternate solution.
No response
Anything else? (Additional Context)
No response
The text was updated successfully, but these errors were encountered: