raphaelauv opened a new issue, #40225:
URL: https://github.com/apache/airflow/issues/40225

   ### Apache Airflow version
   
   2.9.2
   
   ### If "Other Airflow 2 version" selected, which one?
   
   _No response_
   
   ### What happened?
   
   when you set a filter on status of dags like failed
   
   and clear the status of a dag_run , it then change the listing of dag_run 
show ( not only remove the dag_run cleared )
   
   
   ### What you think should happen instead?
   
   _No response_
   
   ### How to reproduce
   
   
   
   
https://github.com/apache/airflow/assets/10202690/5b021859-894b-4788-add1-edd8e2dc3c75
   
   
   ```python
   from airflow.operators.python import PythonOperator
   from pendulum import today
   from airflow import DAG
   
   with DAG(
           dag_id='example',
           schedule_interval='0 0 * * *',
           start_date=today("UTC").add(days=-5)):
       def fail():
           raise Exception()
   
       PythonOperator(task_id="nothing",
                      python_callable=fail)
   
   ```
   
   ### Operating System
   
   ---
   
   ### Versions of Apache Airflow Providers
   
   _No response_
   
   ### Deployment
   
   Official Apache Airflow Helm Chart
   
   ### Deployment details
   
   _No response_
   
   ### Anything else?
   
   _No response_
   
   ### Are you willing to submit PR?
   
   - [ ] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of 
Conduct](https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md)
   


-- 
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-unsubscr...@airflow.apache.org.apache.org

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

Reply via email to