Skip to content

Commit 9b4d044

Browse files
authored
Fix slash in airflow.py
1 parent 4903e79 commit 9b4d044

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

auth_backend/auth_plugins/airflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ async def _update_outer_user_password(cls, username: str, password: str):
4343
res = False
4444
async with aiohttp.ClientSession() as session:
4545
async with session.patch(
46-
str(cls.settings.AIRFLOW_AUTH_BASE_URL).removesuffix('/') + '/auth/fab/v1/users' + username,
46+
str(cls.settings.AIRFLOW_AUTH_BASE_URL).removesuffix('/') + '/auth/fab/v1/users/' + username,
4747
auth=aiohttp.BasicAuth(
4848
cls.settings.AIRFLOW_AUTH_ADMIN_USERNAME, cls.settings.AIRFLOW_AUTH_ADMIN_PASSWORD
4949
),

0 commit comments

Comments
 (0)