uranusjr commented on a change in pull request #22184:
URL: https://github.com/apache/airflow/pull/22184#discussion_r826654648
##########
File path: airflow/dag_processing/processor.py
##########
@@ -451,7 +449,7 @@ def manage_slas(self, dag: DAG, session: Session = None) ->
None:
session.delete(ti)
session.commit()
- task_list = "\n".join(sla.task_id + ' on ' +
sla.execution_date.isoformat() for sla in slas)
+ task_list = "\n".join(sla.task_id + ' on ' + sla.run_id for sla in
slas)
Review comment:
```suggestion
task_list = "\n".join(f"{sla.task_id} on {sla.run_id}" for sla
in slas)
```
Boy scouting
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]