Skip to content

Commit 3e3fe25

Browse files
fix: Pass credentials properly for read api instantiation (#2280)
1 parent 08c0c0c commit 3e3fe25

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bigframes/session/clients.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,10 +191,11 @@ def _create_bigquery_client(self):
191191
client_options=bq_options,
192192
project=self._project,
193193
location=self._location,
194-
# Instead of credentials, use _http so that users can override
194+
# Use _http so that users can override
195195
# requests options with transport adapters. See internal issue
196196
# b/419106112.
197197
_http=requests_session,
198+
credentials=self._credentials,
198199
)
199200

200201
# If a new enough client library is available, we opt-in to the faster

0 commit comments

Comments
 (0)