From 5331b13fd4257f62b7fc77f7d8a6761540e08d00 Mon Sep 17 00:00:00 2001 From: Mike Alfare Date: Thu, 5 Dec 2024 13:32:56 -0500 Subject: [PATCH] remove custom retry in get_table call --- dbt/adapters/bigquery/connections.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/dbt/adapters/bigquery/connections.py b/dbt/adapters/bigquery/connections.py index 61fa87d40..bb062f330 100644 --- a/dbt/adapters/bigquery/connections.py +++ b/dbt/adapters/bigquery/connections.py @@ -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()