Skip to content

Commit 6f89d7c

Browse files
Add Request to creds.refresh call (#1379)
1 parent 676c66c commit 6f89d7c

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
kind: Fixes
2+
body: Fix BigFrames python model + oauth + notebook template by adding a Request to
3+
creds.refresh calll
4+
time: 2025-10-09T14:15:23.578214-07:00
5+
custom:
6+
Author: colin-rogers-dbt
7+
Issue: "1379"

dbt-bigquery/src/dbt/adapters/bigquery/python_submissions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ def _get_token(self) -> str:
225225
if creds.token:
226226
return creds.token
227227
else:
228-
creds.refresh()
228+
creds.refresh(Request())
229229
return creds.token
230230

231231
def _py_to_ipynb(self, compiled_code: str) -> str:

0 commit comments

Comments
 (0)