This is an automated email from the ASF dual-hosted git repository.
onikolas pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new eeaffb5e9af Enable multi-team in Celery executor (#62534)
eeaffb5e9af is described below
commit eeaffb5e9afbc437f84f82a499959aec872488e9
Author: Vincent <[email protected]>
AuthorDate: Thu Feb 26 16:33:51 2026 -0500
Enable multi-team in Celery executor (#62534)
---
.../celery/src/airflow/providers/celery/executors/celery_executor.py | 1 +
1 file changed, 1 insertion(+)
diff --git
a/providers/celery/src/airflow/providers/celery/executors/celery_executor.py
b/providers/celery/src/airflow/providers/celery/executors/celery_executor.py
index abb3b860059..7144425b2c3 100644
--- a/providers/celery/src/airflow/providers/celery/executors/celery_executor.py
+++ b/providers/celery/src/airflow/providers/celery/executors/celery_executor.py
@@ -95,6 +95,7 @@ class CeleryExecutor(BaseExecutor):
# TODO: Remove this flag once providers depend on Airflow 3.2.
supports_sentry: bool = True
+ supports_multi_team: bool = True
if TYPE_CHECKING and AIRFLOW_V_3_0_PLUS:
# In the v3 path, we store workloads, not commands as strings.