You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Client should be accessible from ClusterAdmin.
The ClusterAdmin interface should either expose a Client() *Client function or the ClusterAdmin should compose the Client interface. A third option would be create a NewClusterAdminFromClient(client *Client) (*ClusterAdmin, error) function which would allow the user to reuse the existing Client
I have written an application that requires me to get all topics from the cluster and differentiate internal from "normal" topics. 95% of all my needs are filled by the Client, but getting Topic Metadata is only accomplished by the ClusterAdmin. It doesn't make a ton of sense for me to open two clients: one that I can use and the internal one opened by the ClusterAdmin.
The text was updated successfully, but these errors were encountered:
On Aug 8, 2019, at 12:41, Varun ***@***.***> wrote:
Does this work for you -> #1415 ?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or mute the thread.
The
Client
should be accessible fromClusterAdmin
.The
ClusterAdmin
interface should either expose aClient() *Client
function or the ClusterAdmin should compose the Client interface. A third option would be create aNewClusterAdminFromClient(client *Client) (*ClusterAdmin, error)
function which would allow the user to reuse the existing ClientI have written an application that requires me to get all topics from the cluster and differentiate internal from "normal" topics. 95% of all my needs are filled by the
Client
, but getting Topic Metadata is only accomplished by theClusterAdmin
. It doesn't make a ton of sense for me to open two clients: one that I can use and the internal one opened by theClusterAdmin
.The text was updated successfully, but these errors were encountered: