From 3fae415afa7ef2e9f6611a114136464ac4931dce Mon Sep 17 00:00:00 2001 From: Kevin Lyda Date: Fri, 27 Oct 2023 08:35:01 +0100 Subject: [PATCH] Update util/oidc/oidc.go Better phrasing. Co-authored-by: Blake Pettersson Signed-off-by: Kevin Lyda --- util/oidc/oidc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/oidc/oidc.go b/util/oidc/oidc.go index f928d6990469b..2230f3eae71c0 100644 --- a/util/oidc/oidc.go +++ b/util/oidc/oidc.go @@ -288,7 +288,7 @@ func (a *ClientApp) HandleLogin(w http.ResponseWriter, r *http.Request) { returnURL := r.FormValue("return_url") // Check if return_url is valid, otherwise abort processing (see https://github.com/argoproj/argo-cd/pull/4780) if !isValidRedirectURL(returnURL, []string{a.settings.URL}) { - log.Errorf("Invalid redirect URL: %s is not a valid per the settings.", returnURL) + log.Errorf("Invalid redirect URL: %s is not a valid URL or does not match the URL in settings.", returnURL) http.Error(w, "Invalid redirect URL: the protocol and host (including port) must match and the path must be within allowed URLs if provided", http.StatusBadRequest) return }