Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

clear dag_run with filter on status bug #40225

Open
1 of 2 tasks
raphaelauv opened this issue Jun 13, 2024 · 0 comments
Open
1 of 2 tasks

clear dag_run with filter on status bug #40225

raphaelauv opened this issue Jun 13, 2024 · 0 comments
Labels
area:UI Related to UI/UX. For Frontend Developers. kind:bug This is a clearly a bug

Comments

@raphaelauv
Copy link
Contributor

raphaelauv commented Jun 13, 2024

Apache Airflow version

2.9.2

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 )

How to reproduce

Screencast.from.13-06-2024.23-34-06.mp4
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)

Are you willing to submit PR?

  • Yes I am willing to submit a PR!

Code of Conduct

@raphaelauv raphaelauv added area:core kind:bug This is a clearly a bug needs-triage label for new issues that we didn't triage yet labels Jun 13, 2024
@shahar1 shahar1 added area:UI Related to UI/UX. For Frontend Developers. and removed area:core needs-triage label for new issues that we didn't triage yet labels Jun 14, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area:UI Related to UI/UX. For Frontend Developers. kind:bug This is a clearly a bug
Projects
None yet
Development

No branches or pull requests

2 participants