From ba65bf78e69837a1fbc66284f5282beb787993bd Mon Sep 17 00:00:00 2001 From: Andrei Markin Date: Thu, 12 Sep 2024 12:31:15 +0400 Subject: [PATCH] Fix bug with incorrect Bigquery dataset name for SKAN schema Change-Id: I862291dd9b02366cc9ec846767dc58c2b84f3fda --- app/scripts/create_skan_schema.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/scripts/create_skan_schema.py b/app/scripts/create_skan_schema.py index ab16a86..f2211c6 100644 --- a/app/scripts/create_skan_schema.py +++ b/app/scripts/create_skan_schema.py @@ -135,7 +135,7 @@ def main(): ) config = gaarf_utils.ConfigBuilder('gaarf-bq').build(vars(args), kwargs) - bq_dataset = config.params.get('macros', {}).get('bq_dataset') + bq_dataset = config.params.get('macro', {}).get('bq_dataset') bigquery_executor = bq_executor.BigQueryExecutor(config.project) if gaarf_config := args.gaarf_config: with smart_open.open(gaarf_config, 'r', encoding='utf-8') as f: