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
So that it is not needed to provide them again for every call. i.e. Instead of doing this:
c = new ConsulClient(); c.getCatalogService(someServiceName, someTag, QueryParams.DEFAULT, someACLToken);
do this:
c = new ConsulClient(QueryParams.DEFAULT, someACLToken); c.getCatalogService(someServiceName, someTag);
The text was updated successfully, but these errors were encountered:
Absolutely yes. It will save me a lot of keystrokes.
Sorry, something went wrong.
I would like to raise a PR if the maintainers want something like this.
No branches or pull requests
So that it is not needed to provide them again for every call.
i.e. Instead of doing this:
c = new ConsulClient();
c.getCatalogService(someServiceName, someTag, QueryParams.DEFAULT, someACLToken);
do this:
c = new ConsulClient(QueryParams.DEFAULT, someACLToken);
c.getCatalogService(someServiceName, someTag);
The text was updated successfully, but these errors were encountered: