From 43b1c27ff83cae38570cdbf768368eb6996c809a Mon Sep 17 00:00:00 2001 From: Chris Cundill Date: Thu, 23 Jan 2025 10:39:37 +0000 Subject: [PATCH] Fix typo in utils.py --- dags/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dags/utils.py b/dags/utils.py index 0cd3507..b857688 100644 --- a/dags/utils.py +++ b/dags/utils.py @@ -117,6 +117,6 @@ def configure_dag(**kwargs): ti.xcom_push(key='collection-dataset-bucket-name', value=collection_dataset_bucket_name) ti.xcom_push(key='incremental-loading-override', value=incremental_loading_override) ti.xcom_push(key='regenerate-log-override', value=regenerate_log_override) - ti.xcon.push(key='refill-todays-logs', value=refill_todays_logs) + ti.xcom.push(key='refill-todays-logs', value=refill_todays_logs) return configure_dag