You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2022/01/31 22:21:09 UTC

[GitHub] [airflow] HaloKo4 commented on a change in pull request #21239: Fix trigger dag redirect from task instance log view

HaloKo4 commented on a change in pull request #21239:
URL: https://github.com/apache/airflow/pull/21239#discussion_r796112414



##########
File path: airflow/www/views.py
##########
@@ -1377,7 +1377,7 @@ def log(self, session=None):
         dag_id = request.args.get('dag_id')
         task_id = request.args.get('task_id')
         execution_date = request.args.get('execution_date')
-        dttm = timezone.parse(execution_date)
+        dttm = timezone.parse(execution_date) if execution_date else None

Review comment:
       isn't execution date deprecated and replaced with run id?




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org