From 4a435039ff4ce14890af1c5651b33cba4294bd7a Mon Sep 17 00:00:00 2001 From: Laysa de Sousa Bitencourt Date: Fri, 19 Apr 2024 13:20:04 -0300 Subject: [PATCH] print(dag_run.execution_date) --- dags/stellar_etl_airflow/test_sources.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dags/stellar_etl_airflow/test_sources.py b/dags/stellar_etl_airflow/test_sources.py index 83540aee..8a5cea11 100644 --- a/dags/stellar_etl_airflow/test_sources.py +++ b/dags/stellar_etl_airflow/test_sources.py @@ -39,6 +39,9 @@ def get_from_combinedExport(**context): gcs_hook = GCSHook(google_cloud_storage_conn_id="google_cloud_storage_default") + for dag_run in execution_dates: + print(dag_run.execution_date) + for dag_run in execution_dates: execution_date_str = dag_run.execution_date.strftime( "%Y-%m-%d %H:%M:%S%z"