[java-idp-oidc] branch main updated: Fix log messages.

Scott Cantor cantor.2 at osu.edu
Mon Nov 14 22:06:37 UTC 2022


This is an automated email from the git hooks/post-receive script.

scantor pushed a commit to branch main
in repository java-idp-oidc.

View the commit online:
http://git.shibboleth.net/view/?p=java-idp-oidc.git;a=commit;h=11652cba103e57fb5d20d090b2c808270fb9e502

The following commit(s) were added to refs/heads/main by this push:
     new 11652cba Fix log messages.
11652cba is described below

commit 11652cba103e57fb5d20d090b2c808270fb9e502
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Mon Nov 14 17:06:34 2022 -0500

    Fix log messages.
---
 .../context/navigate/DefaultRequestRedirectURILookupFunction.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/idp-oidc-extension-api/src/main/java/net/shibboleth/idp/plugin/oidc/op/profile/context/navigate/DefaultRequestRedirectURILookupFunction.java b/idp-oidc-extension-api/src/main/java/net/shibboleth/idp/plugin/oidc/op/profile/context/navigate/DefaultRequestRedirectURILookupFunction.java
index 706e4271..6e3d17b7 100644
--- a/idp-oidc-extension-api/src/main/java/net/shibboleth/idp/plugin/oidc/op/profile/context/navigate/DefaultRequestRedirectURILookupFunction.java
+++ b/idp-oidc-extension-api/src/main/java/net/shibboleth/idp/plugin/oidc/op/profile/context/navigate/DefaultRequestRedirectURILookupFunction.java
@@ -46,12 +46,12 @@ public class DefaultRequestRedirectURILookupFunction extends AbstractAuthorizati
                 if (redirect instanceof String) {
                     return new URI((String)redirect);
                 } else {
-                    log.error("login_hint claim is not of expected type");
+                    log.error("redirect_uri claim is not of expected type");
                     return null;
                 }
             }
         } catch (final ParseException | URISyntaxException e) {
-            log.error("Unable to parse login hint from request object login_hint value");
+            log.error("Unable to parse redirect URI from request object redirect_uri value");
             return null;
         }
         return req.getRedirectionURI();

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list