amoghrajesh commented on code in PR #58112:
URL: https://github.com/apache/airflow/pull/58112#discussion_r2512990364
##########
airflow-core/docs/howto/docker-compose/docker-compose.yaml:
##########
@@ -60,7 +60,11 @@ x-airflow-common:
AIRFLOW__DATABASE__SQL_ALCHEMY_CONN:
postgresql+psycopg2://airflow:airflow@postgres/airflow
AIRFLOW__CELERY__RESULT_BACKEND:
db+postgresql://airflow:airflow@postgres/airflow
AIRFLOW__CELERY__BROKER_URL: redis://:@redis:6379/0
- AIRFLOW__CORE__FERNET_KEY: ''
+ #
+ # Please Do not use this Fernet key in any deployments! Please generate
your own key.
+ # This is specifically generated for tests and not as default. It could
fail any static level code checks.
+ #
+ AIRFLOW__CORE__FERNET_KEY: 'dGVzdF9rZXlfdGVzdF9rZXlfdGVzdF9rZXlfdGVzdF8='
Review Comment:
Like this for example:
```python
common_env = compose_config["x-airflow-common"].get("environment",
{})
common_env.update(docker_compose_env_vars)
```
--
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]