potiuk commented on code in PR #52318:
URL: https://github.com/apache/airflow/pull/52318#discussion_r2173248117
##########
scripts/in_container/check_environment.sh:
##########
@@ -61,10 +61,16 @@ function check_db_backend {
elif [[ ${BACKEND} == "sqlite" ]]; then
return
elif [[ ${BACKEND} == "none" ]]; then
- echo "${COLOR_YELLOW}WARNING: Using no database backend!${COLOR_RESET}"
- return
+ echo "${COLOR_YELLOW}WARNING: Using no database backend${COLOR_RESET}"
+
+ if [[ ${START_AIRFLOW} == "true" ]]; then
Review Comment:
```suggestion
if [[ ${START_AIRFLOW=} == "true" ]]; then
```
Otherwise it will fail if START_AIRFLOW is not set at all.
--
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]