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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
In here: https://github.com/gnocchixyz/python-gnocchiclient/blob/master/gnocchiclient/v1/resource.py#L174
gnocchiclient does: url = "v1/search/resource/%s?%%s" % resource_type
Unfortunately, when the endpoint is set to something like this: http://api.example.com/metric
gnocchiclient then fails to add /metric to the above url = variable, and therefore fails.
The solution would be to check the endpoint, and find the path, to add it before the content of url=
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In here:
https://github.com/gnocchixyz/python-gnocchiclient/blob/master/gnocchiclient/v1/resource.py#L174
gnocchiclient does:
url = "v1/search/resource/%s?%%s" % resource_type
Unfortunately, when the endpoint is set to something like this:
http://api.example.com/metric
gnocchiclient then fails to add /metric to the above url = variable, and therefore fails.
The solution would be to check the endpoint, and find the path, to add it before the content of url=
The text was updated successfully, but these errors were encountered: