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
Version:v2.1.2
a, err := admin.NewAdmin(admin.WithResolver(primitive.NewPassthroughResolver(nameServerAddrs))) if err != nil { return nil, fmt.Errorf("new admin err:%s, addr:%v", err, nameServerAddrs) } res, err := a.FetchAllTopicList(ctx) //会报错 if err != nil { return nil, err } a.CreateTopic(ctx, opts...) // 成功
当 namseServerAddrs 是 []string{ "http://docker.svc.cluster.local:9876" } 时,FetchAllTopicList 报错, CreateTopic 成功 当 namseServerAddrs 是 []string{ "127.0.0.1:9876" } 时,FetchAllTopicList 成功,CreateTopic 成功
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Version:v2.1.2
当 namseServerAddrs 是 []string{ "http://docker.svc.cluster.local:9876" } 时,FetchAllTopicList 报错, CreateTopic 成功
当 namseServerAddrs 是 []string{ "127.0.0.1:9876" } 时,FetchAllTopicList 成功,CreateTopic 成功
The text was updated successfully, but these errors were encountered: