rawwar commented on PR #43442:
URL: https://github.com/apache/airflow/pull/43442#issuecomment-2441774220

   @ephraimbuddy , In 3.x code, we removed SLA related code. Like, the 
following code is not present in 3.x
   
   ```
   base_query = (
           base_query.join(
               SlaMiss,
               and_(
                   SlaMiss.dag_id == TI.dag_id,
                   SlaMiss.task_id == TI.task_id,
                   SlaMiss.execution_date == DR.execution_date,
               ),
               isouter=True,
           )
           .add_columns(SlaMiss)
   ```
   
   So, it won't be an exact backport. I did a cherry-pick before the draft and 
it had conflicts


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

Reply via email to