AUTH-3475: Updated GetAppInfo error message

This commit is contained in:
Michael Borkenstein 2021-04-05 13:05:11 -05:00
parent 31ff7caeeb
commit 8d99e92852
1 changed files with 1 additions and 1 deletions

View File

@ -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)