This is an automated email from the ASF dual-hosted git repository. kaxilnaik pushed a commit to branch v3-1-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 5139972089594c133094446d800b390f2e705387 Author: Brent Bovenzi <[email protected]> AuthorDate: Wed Oct 1 18:02:05 2025 -0400 Default checkPendingRuns to false (#56307) (cherry picked from commit 2479a1dc3ccda240d14f90ddc591d90dd8766a7d) --- airflow-core/src/airflow/ui/src/utils/query.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airflow-core/src/airflow/ui/src/utils/query.ts b/airflow-core/src/airflow/ui/src/utils/query.ts index f751f801081..6a0b072ca59 100644 --- a/airflow-core/src/airflow/ui/src/utils/query.ts +++ b/airflow-core/src/airflow/ui/src/utils/query.ts @@ -32,7 +32,7 @@ export const isStatePending = (state?: TaskInstanceState | null) => // checkPendingRuns=false assumes that the component is already handling pending, setting to true will have useAutoRefresh handle it export const useAutoRefresh = ({ - checkPendingRuns, + checkPendingRuns = false, dagId, }: { checkPendingRuns?: boolean;
