Skip to content

Commit

Permalink
feat: pass 'client_options' to super ctor (#61)
Browse files Browse the repository at this point in the history
Closes #55
  • Loading branch information
tseaver committed Aug 12, 2020
1 parent 79da042 commit c4387b3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion google/cloud/logging/client.py
Expand Up @@ -124,7 +124,10 @@ def __init__(
client_options=None,
):
super(Client, self).__init__(
project=project, credentials=credentials, _http=_http
project=project,
credentials=credentials,
_http=_http,
client_options=client_options,
)

kw_args = {"client_info": client_info}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -30,7 +30,7 @@
release_status = 'Development Status :: 5 - Production/Stable'
dependencies = [
"google-api-core[grpc] >= 1.15.0, < 2.0.0dev",
"google-cloud-core >= 1.1.0, < 2.0dev",
"google-cloud-core >= 1.4.1, < 2.0dev",
]
extras = {
}
Expand Down

0 comments on commit c4387b3

Please sign in to comment.