From 8d99e9285234fe53e1866610cf888182ab488671 Mon Sep 17 00:00:00 2001 From: Michael Borkenstein Date: Mon, 5 Apr 2021 13:05:11 -0500 Subject: [PATCH] AUTH-3475: Updated GetAppInfo error message --- token/token.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/token/token.go b/token/token.go index a3aeffa6..9f3cf2e4 100644 --- a/token/token.go +++ b/token/token.go @@ -278,7 +278,7 @@ func GetAppInfo(reqURL *url.URL) (*AppInfo, error) { // 403/401 from the edge will have aud in a header aud = audHeader } else { - return nil, fmt.Errorf("failed to get Access app info for %s", reqURL.String()) + return nil, fmt.Errorf("failed to find Access application at %s", reqURL.String()) } domain := resp.Header.Get(appDomainHeader)