potiuk commented on code in PR #43240: URL: https://github.com/apache/airflow/pull/43240#discussion_r1821565437
########## dev/breeze/src/airflow_breeze/global_constants.py: ########## @@ -64,7 +64,8 @@ ALLOWED_ARCHITECTURES = [Architecture.X86_64, Architecture.ARM] # Database Backends used when starting Breeze. The "none" value means that invalid configuration # Is set and no database started - access to a database will fail. -ALLOWED_BACKENDS = ["sqlite", "mysql", "postgres", "none"] +POSTGRES_BACKEND = "postgres" +ALLOWED_BACKENDS = ["sqlite", "mysql", POSTGRES_BACKEND, "none"] ALLOWED_PROD_BACKENDS = ["mysql", "postgres"] Review Comment: ```suggestion ALLOWED_PROD_BACKENDS = ["mysql", POSTGRES_BACKEND] ``` -- 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: commits-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org