[java-plugin-shibd] branch main updated: Fix some missing events in parent flow.
Scott Cantor
cantor.2 at osu.edu
Wed Oct 2 19:41:28 UTC 2024
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-plugin-shibd.
View the commit online:
http://git.shibboleth.net/view/?p=java-plugin-shibd.git;a=commit;h=eeba64e96b0a9c36792eabd8d6be7cecd095e68a
The following commit(s) were added to refs/heads/main by this push:
new eeba64e Fix some missing events in parent flow.
eeba64e is described below
commit eeba64e96b0a9c36792eabd8d6be7cecd095e68a
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Wed Oct 2 15:41:24 2024 -0400
Fix some missing events in parent flow.
---
.../META-INF/net/shibboleth/idp/flows/sp/consumer/consumer-flow.xml | 4 ++++
.../java/net/shibboleth/sp/profile/impl/SelectTokenConsumerFlow.java | 2 +-
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/sp-conf-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/sp/consumer/consumer-flow.xml b/sp-conf-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/sp/consumer/consumer-flow.xml
index f84660c..d7b2d84 100644
--- a/sp-conf-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/sp/consumer/consumer-flow.xml
+++ b/sp-conf-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/sp/consumer/consumer-flow.xml
@@ -14,8 +14,10 @@
<!-- Error events to reflect back from this subflow. -->
<end-state id="InvalidEvent" />
<end-state id="InvalidProfileContext" />
+ <end-state id="InvalidProfileConfiguration" />
<end-state id="InvalidRelyingPartyContext" />
<end-state id="InvalidRelyingPartyConfiguration" />
+ <end-state id="InvalidSecurityConfiguration" />
<end-state id="ReselectFlow" />
<end-state id="RuntimeException" />
@@ -31,8 +33,10 @@
<global-transitions>
<transition on-exception="java.lang.RuntimeException" to="LogRuntimeException" />
<transition on="InvalidProfileContext" to="InvalidProfileContext" />
+ <transition on="InvalidProfileConfiguration" to="InvalidProfileConfiguration" />
<transition on="InvalidRelyingPartyContext" to="InvalidRelyingPartyContext" />
<transition on="InvalidRelyingPartyConfiguration" to="InvalidRelyingPartyConfiguration" />
+ <transition on="InvalidSecurityConfiguration" to="InvalidSecurityConfiguration" />
<transition on="ReselectFlow" to="ReselectFlow" />
<transition on="RuntimeException" to="RuntimeException" />
</global-transitions>
diff --git a/sp-server-impl/src/main/java/net/shibboleth/sp/profile/impl/SelectTokenConsumerFlow.java b/sp-server-impl/src/main/java/net/shibboleth/sp/profile/impl/SelectTokenConsumerFlow.java
index f48a293..4552ead 100644
--- a/sp-server-impl/src/main/java/net/shibboleth/sp/profile/impl/SelectTokenConsumerFlow.java
+++ b/sp-server-impl/src/main/java/net/shibboleth/sp/profile/impl/SelectTokenConsumerFlow.java
@@ -103,7 +103,7 @@ public class SelectTokenConsumerFlow extends AbstractApplicationAction {
ActionSupport.buildEvent(profileRequestContext, "sp/consumer/" + flowId);
return;
} else {
- log.warn("{} Token consumer flow {} cannot handle request", getLogPrefix(), flowId);
+ log.debug("{} Token consumer flow {} cannot handle request", getLogPrefix(), flowId);
}
} else {
log.warn("{} Token consumer flow {} is not available", getLogPrefix(), flowId);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list