[java-identity-provider] branch main updated: IDP-2084 - RemoteUser authn servlet uses hardcoded checkHeaders

Scott Cantor cantor.2 at osu.edu
Thu Mar 30 13:23:23 UTC 2023


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

scantor pushed a commit to branch main
in repository java-identity-provider.

View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=87a1955c6c6903976f595028482bc4f2ced32aac

The following commit(s) were added to refs/heads/main by this push:
     new 87a1955c6 IDP-2084 - RemoteUser authn servlet uses hardcoded checkHeaders
87a1955c6 is described below

commit 87a1955c6c6903976f595028482bc4f2ced32aac
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Thu Mar 30 08:15:58 2023 -0400

    IDP-2084 - RemoteUser authn servlet uses hardcoded checkHeaders
    
    https://shibboleth.atlassian.net/browse/IDP-2084
    
    Fix regression.
---
 .../main/java/net/shibboleth/idp/authn/impl/RemoteUserAuthServlet.java | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/RemoteUserAuthServlet.java b/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/RemoteUserAuthServlet.java
index 5f4b2fec2..03fe1407b 100644
--- a/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/RemoteUserAuthServlet.java
+++ b/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/RemoteUserAuthServlet.java
@@ -187,8 +187,7 @@ public class RemoteUserAuthServlet extends HttpServlet {
             }
         }
 
-        //param = config.getInitParameter(CHECK_HEADERS_PARAM);
-        param = "ShibbolethUser";
+        param = config.getInitParameter(CHECK_HEADERS_PARAM);
         if (param != null) {
             final String[] headers = param.split(" ");
             if (headers != null) {

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


More information about the commits mailing list