Skip to content
This repository was archived by the owner on Sep 2, 2025. It is now read-only.

Commit 26c19e9

Browse files
authored
Remove custom retry in get_table call (#1423)
* remove custom retry in get_table call * changelog
1 parent 1798601 commit 26c19e9

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
kind: Fixes
2+
body: Fix issue where rate limit errors on table service calls are not retried
3+
time: 2024-12-05T13:36:06.436005-05:00
4+
custom:
5+
Author: mikealfare
6+
Issue: "1423"

dbt/adapters/bigquery/connections.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -519,10 +519,7 @@ def get_bq_table(self, database, schema, identifier) -> Table:
519519
# backwards compatibility: fill in with defaults if not specified
520520
database = database or conn.credentials.database
521521
schema = schema or conn.credentials.schema
522-
return client.get_table(
523-
table=self.table_ref(database, schema, identifier),
524-
retry=self._retry.create_reopen_with_deadline(conn),
525-
)
522+
return client.get_table(self.table_ref(database, schema, identifier))
526523

527524
def drop_dataset(self, database, schema) -> None:
528525
conn = self.get_thread_connection()

0 commit comments

Comments
 (0)