This is an automated email from the ASF dual-hosted git repository.
ash 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 1ec334a2ed6 Fix execution api server url in docker-compose (#48061)
1ec334a2ed6 is described below
commit 1ec334a2ed612653fdefbf1a7c582dc9f53157c8
Author: Daniel van der Ende <[email protected]>
AuthorDate: Fri Mar 21 16:50:32 2025 +0100
Fix execution api server url in docker-compose (#48061)
This was using AIRFLOW__WORKERS instead of AIRFLOW__CORE, which didn't work
---
airflow-core/docs/howto/docker-compose/docker-compose.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/airflow-core/docs/howto/docker-compose/docker-compose.yaml
b/airflow-core/docs/howto/docker-compose/docker-compose.yaml
index 7b3dc4de519..d00db43cb1a 100644
--- a/airflow-core/docs/howto/docker-compose/docker-compose.yaml
+++ b/airflow-core/docs/howto/docker-compose/docker-compose.yaml
@@ -61,7 +61,7 @@ x-airflow-common:
AIRFLOW__CORE__FERNET_KEY: ''
AIRFLOW__CORE__DAGS_ARE_PAUSED_AT_CREATION: 'true'
AIRFLOW__CORE__LOAD_EXAMPLES: 'true'
- AIRFLOW__WORKERS__EXECUTION_API_SERVER_URL:
'http://airflow-apiserver:8080/execution/'
+ AIRFLOW__CORE__EXECUTION_API_SERVER_URL:
'http://airflow-apiserver:8080/execution/'
# yamllint disable rule:line-length
# Use simple http server on scheduler for health checks
# See
https://airflow.apache.org/docs/apache-airflow/stable/administration-and-deployment/logging-monitoring/check-health.html#scheduler-health-check-server