vladiceanu commented on issue #49781: URL: https://github.com/apache/airflow/issues/49781#issuecomment-3073504902
For us, the issue was with the import in `webserver_config.py` (airflow is behind nginx ingress) ```python # BROKEN from flask_appbuilder.const import AUTH_DB, AUTH_OAUTH, AUTH_REMOTE_USER ... ``` started to work when we changed to: ```python # WORKING from flask_appbuilder.security.manager import AUTH_OAUTH, AUTH_DB, AUTH_REMOTE_USER ... ``` -- 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]
