Skip to content

Commit

Permalink
Fix rendered template test
Browse files Browse the repository at this point in the history
  • Loading branch information
bbovenzi committed Feb 23, 2024
1 parent 349a4b3 commit 714975b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/www/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -1359,7 +1359,7 @@ def rendered_templates(self, session):

logging.info("Retrieving rendered templates.")
dag: DAG = get_airflow_app().dag_bag.get_dag(dag_id)
dag_run = dag.get_dagrun(execution_date=dttm, session=session)
dag_run = dag.get_dagrun(execution_date=dttm)
raw_task = dag.get_task(task_id).prepare_for_execution()

no_dagrun = False
Expand Down

0 comments on commit 714975b

Please sign in to comment.