-
Notifications
You must be signed in to change notification settings - Fork 16.3k
Closed
Labels
affected_version:3.0Issues Reported for 3.0Issues Reported for 3.0affected_version:3.1Issues Reported for 3.1Issues Reported for 3.1affected_version:main_branchIssues Reported for main branchIssues Reported for main brancharea:UIRelated to UI/UX. For Frontend Developers.Related to UI/UX. For Frontend Developers.area:corekind:bugThis is a clearly a bugThis is a clearly a bugpriority:highHigh priority bug that should be patched quickly but does not require immediate new releaseHigh priority bug that should be patched quickly but does not require immediate new release
Milestone
Description
Apache Airflow version
main (development)
If "Other Airflow 2 version" selected, which one?
No response
What happened?
When a dag is running for longer time then dag progress bar is not keeping up with the dag duration time.
Screen.Recording.2025-08-28.at.3.54.59.PM.mov
What you think should happen instead?
No response
How to reproduce
Use below dag to reproduce the issue:
import datetime
from airflow.providers.standard.operators.bash import BashOperator
from airflow.sdk import DAG
dag = DAG(
'test_api_dag',
start_date=datetime.datetime(2025, 7,1),
schedule='@daily',
is_paused_upon_creation=False,
catchup=True,
)
hello_task = BashOperator(
task_id="sleeeeeep",
bash_command="sleep 300",
dag=dag
)
hello_taskOperating System
Linux
Versions of Apache Airflow Providers
No response
Deployment
Other
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
- I agree to follow this project's Code of Conduct
Metadata
Metadata
Assignees
Labels
affected_version:3.0Issues Reported for 3.0Issues Reported for 3.0affected_version:3.1Issues Reported for 3.1Issues Reported for 3.1affected_version:main_branchIssues Reported for main branchIssues Reported for main brancharea:UIRelated to UI/UX. For Frontend Developers.Related to UI/UX. For Frontend Developers.area:corekind:bugThis is a clearly a bugThis is a clearly a bugpriority:highHigh priority bug that should be patched quickly but does not require immediate new releaseHigh priority bug that should be patched quickly but does not require immediate new release