Skip to content

Commit

Permalink
Fix bug with incorrect Bigquery dataset name for SKAN schema
Browse files Browse the repository at this point in the history
Change-Id: I862291dd9b02366cc9ec846767dc58c2b84f3fda
  • Loading branch information
AVMarkin committed Sep 12, 2024
1 parent bba7969 commit ba65bf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/scripts/create_skan_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit ba65bf7

Please sign in to comment.