Skip to content

Commit c4387b3

Browse files
authored
feat: pass 'client_options' to super ctor (#61)
Closes #55
1 parent 79da042 commit c4387b3

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

google/cloud/logging/client.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,10 @@ def __init__(
124124
client_options=None,
125125
):
126126
super(Client, self).__init__(
127-
project=project, credentials=credentials, _http=_http
127+
project=project,
128+
credentials=credentials,
129+
_http=_http,
130+
client_options=client_options,
128131
)
129132

130133
kw_args = {"client_info": client_info}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
release_status = 'Development Status :: 5 - Production/Stable'
3131
dependencies = [
3232
"google-api-core[grpc] >= 1.15.0, < 2.0.0dev",
33-
"google-cloud-core >= 1.1.0, < 2.0dev",
33+
"google-cloud-core >= 1.4.1, < 2.0dev",
3434
]
3535
extras = {
3636
}

0 commit comments

Comments
 (0)