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
Grepping through the JSON discovery spec for "project" it only occurs in
"project"
storage.buckets.insert storage.buckets.list
yet we send it with every single request:
def build_api_url(self, path, query_params=None, api_base_url=None, api_version=None, upload=False): ... query_params.update({'project': self.project}) ...
/cc @thobrla
The text was updated successfully, but these errors were encountered:
Yes, project is only meaningful for the two requests you mentioned.
Sorry, something went wrong.
STORAGE: Removing project from Connection.
068b9fa
Only needed for create_bucket() and get_all_buckets(). Fixes googleapis#726.
Great! @tseaver I made a PR to remove project from Connection and just use project in create_bucket and get_all_buckets.
project
Connection
create_bucket
get_all_buckets
b91b2af
dhermes
Successfully merging a pull request may close this issue.
Grepping through the JSON discovery spec for
"project"
it only occurs inyet we send it with every single request:
/cc @thobrla
The text was updated successfully, but these errors were encountered: