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
Currently KazooClient accepts a list of multiple hosts as a single concatenated string: http://kazoo.readthedocs.io/en/latest/api/client.html#kazoo.client.KazooClient
KazooClient
It seems the API would be more pythonic if it also accepted the hosts as a native list:
['zk01:2181', 'zk02:2181', 'zk03:2181']
I can submit a PR for this, but only if I get confirmation the core team is open to this feature request.
See also DataDog/dd-agent#2943 (comment) - for example, KafkaClient supports both the concatenated string and native list formats.
KafkaClient
The text was updated successfully, but these errors were encountered:
Seems fair to me.
Sorry, something went wrong.
Hello folks, I have just submitted a PR to address this issue (my first contribution to Kazoo). See if it fits your needs.
Best regards
No branches or pull requests
Currently
KazooClient
accepts a list of multiple hosts as a single concatenated string: http://kazoo.readthedocs.io/en/latest/api/client.html#kazoo.client.KazooClientIt seems the API would be more pythonic if it also accepted the hosts as a native list:
I can submit a PR for this, but only if I get confirmation the core team is open to this feature request.
See also DataDog/dd-agent#2943 (comment) - for example,
KafkaClient
supports both the concatenated string and native list formats.The text was updated successfully, but these errors were encountered: