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 2021/07/15 20:02:27 UTC

[GitHub] [airflow] pateash commented on a change in pull request #16931: #16692 show cron description in UI

pateash commented on a change in pull request #16931:
URL: https://github.com/apache/airflow/pull/16931#discussion_r670768419



##########
File path: airflow/www/views.py
##########
@@ -619,6 +619,9 @@ def index(self):
                     dag.can_edit = (permissions.ACTION_CAN_EDIT, dag_resource_name) in user_permissions
                 dag.can_trigger = dag.can_edit and can_create_dag_run
                 dag.can_delete = can_delete_dag
+                dag.schedule_interval_description = wwwutils.get_schedule_interval_description(
+                    dag.schedule_interval
+                )

Review comment:
       thanks @uranusjr  @ashb,
   makes sense.




-- 
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