[java-identity-provider] branch maint-4 updated: IDP-2084 - RemoteUser authn servlet uses hardcoded checkHeaders
Scott Cantor
cantor.2 at osu.edu
Thu Mar 30 12:16:04 UTC 2023
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch maint-4
in repository java-identity-provider.
View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=64944424fe73dc40d461b4469f578b4bba2b8a62
The following commit(s) were added to refs/heads/maint-4 by this push:
new 64944424f IDP-2084 - RemoteUser authn servlet uses hardcoded checkHeaders
64944424f is described below
commit 64944424fe73dc40d461b4469f578b4bba2b8a62
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 e0ba20aa4..75da607df 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
@@ -188,8 +188,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