This is an automated email from the ASF dual-hosted git repository. kaxilnaik pushed a commit to branch v3-0-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit df27faa89dbe3cbe439b1b52068d9893433bed6f Author: Dheeraj Turaga <[email protected]> AuthorDate: Mon Apr 21 09:21:35 2025 -0500 airflow-cli to depend on airflow common services (#49318) Several airflow cli commands would fail if the airflow common dependencies are removed. Adding airflow-common-depends-on (cherry picked from commit 86d70fe47f27b698a89a5c2e423e54a818e9aa98) --- airflow-core/docs/howto/docker-compose/docker-compose.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/airflow-core/docs/howto/docker-compose/docker-compose.yaml b/airflow-core/docs/howto/docker-compose/docker-compose.yaml index d00db43cb1a..cb99c6085db 100644 --- a/airflow-core/docs/howto/docker-compose/docker-compose.yaml +++ b/airflow-core/docs/howto/docker-compose/docker-compose.yaml @@ -279,6 +279,8 @@ services: - bash - -c - airflow + depends_on: + <<: *airflow-common-depends-on # You can enable flower by adding "--profile flower" option e.g. docker-compose --profile flower up # or by explicitly targeted on the command line e.g. docker-compose up flower.
