Skip to content

Commit

Permalink
remove custom retry in get_table call
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare committed Dec 5, 2024
1 parent 1798601 commit 5331b13
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions dbt/adapters/bigquery/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -519,10 +519,7 @@ def get_bq_table(self, database, schema, identifier) -> Table:
# backwards compatibility: fill in with defaults if not specified
database = database or conn.credentials.database
schema = schema or conn.credentials.schema
return client.get_table(
table=self.table_ref(database, schema, identifier),
retry=self._retry.create_reopen_with_deadline(conn),
)
return client.get_table(self.table_ref(database, schema, identifier))

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

0 comments on commit 5331b13

Please sign in to comment.