codechrl commented on issue #53797:
URL: https://github.com/apache/airflow/issues/53797#issuecomment-3158413516
stumbled upon this exact problem, now solved
chronology:
1. downloading docker-compose.yaml from apache-airflow github
2. deploy in local --> with dummy job, no error, run smoothly working fine
3. made some modifications, e.g. change port, change to image build using
Dockerfile, add env_file (on top of environment)
```yaml
env_file:
- .env
environment:
&airflow-common-env
AIRFLOW__CORE__EXECUTOR: CeleryExecutor
```
4. redeploy --> error
5. spent a whole day debugging
6. remove .env conf in docker compose
```yaml
#env_file:
#- .env
environment:
&airflow-common-env
AIRFLOW__CORE__EXECUTOR: CeleryExecutor
```
7. working again!
idk exactly what caused the problem, maybe some env variables get overlapped
and causing error
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]