GitHub user michalc added a comment to the discussion: Attribute error: "SimpleAuthManagerUser" object has no attribute 'id'
If anyone stumbles on this, we had a similar issue, and setting the [core] auth_manager setting to SimpleAuthManager seemed to fix it ``` AIRFLOW__CORE__AUTH_MANAGER=airflow.api_fastapi.auth.managers.simple.simple_auth_manager.SimpleAuthManager ``` This is slightly odd, because this is apparently just setting it to the the default according to the docs of recent versions: https://airflow.apache.org/docs/apache-airflow/3.0.6/configurations-ref.html#auth-manager https://airflow.apache.org/docs/apache-airflow/3.1.0/configurations-ref.html#auth-manager https://airflow.apache.org/docs/apache-airflow/3.1.3/configurations-ref.html#auth-manager Maybe there was some other setting somewhere at play, or somehow we were overriding the default via another mechanism, but we couldn't find it (or even, maybe even we changed something else and _that_ fixed it, really not sure...) GitHub link: https://github.com/apache/airflow/discussions/57552#discussioncomment-15168731 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
