Skip to content

Commit

Permalink
rename automatic login redirect config; fix #67
Browse files Browse the repository at this point in the history
  • Loading branch information
hahahannes committed Feb 21, 2025
1 parent 8ba4894 commit 464e54b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mlflow_oidc_auth/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def __init__(self):
self.OIDC_REDIRECT_URI = os.environ.get("OIDC_REDIRECT_URI", None)
self.OIDC_CLIENT_ID = os.environ.get("OIDC_CLIENT_ID", None)
self.OIDC_CLIENT_SECRET = os.environ.get("OIDC_CLIENT_SECRET", None)
self.ENABLE_AUTOMATIC_LOGIN_REDIRECT = get_bool_env_variable("ENABLE_AUTOMATIC_LOGIN_REDIRECT", False)
self.AUTOMATIC_LOGIN_REDIRECT = get_bool_env_variable("AUTOMATIC_LOGIN_REDIRECT", False)

# session
self.SESSION_TYPE = os.environ.get("SESSION_TYPE", "cachelib")
Expand Down

0 comments on commit 464e54b

Please sign in to comment.