We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4903e79 commit 9b4d044Copy full SHA for 9b4d044
1 file changed
auth_backend/auth_plugins/airflow.py
@@ -43,7 +43,7 @@ async def _update_outer_user_password(cls, username: str, password: str):
43
res = False
44
async with aiohttp.ClientSession() as session:
45
async with session.patch(
46
- str(cls.settings.AIRFLOW_AUTH_BASE_URL).removesuffix('/') + '/auth/fab/v1/users' + username,
+ str(cls.settings.AIRFLOW_AUTH_BASE_URL).removesuffix('/') + '/auth/fab/v1/users/' + username,
47
auth=aiohttp.BasicAuth(
48
cls.settings.AIRFLOW_AUTH_ADMIN_USERNAME, cls.settings.AIRFLOW_AUTH_ADMIN_PASSWORD
49
),
0 commit comments