From caaa132823c7bd5bbfd155f4d94846cb1143f46c Mon Sep 17 00:00:00 2001 From: Jonny Dixon Date: Mon, 14 Jul 2025 13:35:47 +0100 Subject: [PATCH] Update profiler.py --- .../src/datahub/ingestion/source/bigquery_v2/profiler.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/metadata-ingestion/src/datahub/ingestion/source/bigquery_v2/profiler.py b/metadata-ingestion/src/datahub/ingestion/source/bigquery_v2/profiler.py index b7d59349b4..56cd1379ea 100644 --- a/metadata-ingestion/src/datahub/ingestion/source/bigquery_v2/profiler.py +++ b/metadata-ingestion/src/datahub/ingestion/source/bigquery_v2/profiler.py @@ -2697,10 +2697,7 @@ LIMIT 1""" ) # Execute the query - result = self.execute_query( - sample_query, - timeout=self.config.profiling.partition_fetch_timeout, - ) + result = self.execute_query(sample_query) if result and len(result) > 0: value = getattr(result[0], "value", None)