[java-identity-provider] branch master updated: IDP-1463 - Authn finalize fails to overwrite previous active flow result
Scott Cantor
cantor.2 at osu.edu
Mon Jun 10 08:34:08 EDT 2019
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch master
in repository java-identity-provider.
View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=756a94799e9f396a0dda9638dc044b998914eaef
The following commit(s) were added to refs/heads/master by this push:
new 756a947 IDP-1463 - Authn finalize fails to overwrite previous active flow result
756a947 is described below
commit 756a94799e9f396a0dda9638dc044b998914eaef
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Mon Jun 10 08:34:04 2019 -0400
IDP-1463 - Authn finalize fails to overwrite previous active flow result
https://issues.shibboleth.net/jira/browse/IDP-1463
---
.../main/java/net/shibboleth/idp/authn/impl/FinalizeAuthentication.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/FinalizeAuthentication.java b/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/FinalizeAuthentication.java
index 7abf48c..44e97a6 100644
--- a/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/FinalizeAuthentication.java
+++ b/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/FinalizeAuthentication.java
@@ -187,7 +187,7 @@ public class FinalizeAuthentication extends AbstractAuthenticationAction {
scResults.putAll(authenticationContext.getActiveResults());
final AuthenticationResult latest = authenticationContext.getAuthenticationResult();
- if (latest != null && !scResults.containsKey(latest.getAuthenticationFlowId())) {
+ if (latest != null) {
scResults.put(latest.getAuthenticationFlowId(), latest);
}
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list