Skip to content

Commit

Permalink
fix: fix basic auth session
Browse files Browse the repository at this point in the history
  • Loading branch information
kharkevich committed Apr 17, 2024
1 parent a2a5c7f commit b4a34b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mlflow_oidc_auth/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def authenticate_request_basic_auth() -> Union[Authorization, Response]:
password = request.authorization.password
_logger.debug("Authenticating user %s", username)
if store.authenticate_user(username.lower(), password):
_set_username(username)
_set_username(username.lower())
_logger.debug("User %s authenticated", username)
return True
else:
Expand Down

0 comments on commit b4a34b0

Please sign in to comment.