[java-identity-provider COMMIT] in /branches/3.3: ./ idp-conf/src/main/resources/system/flows/admin/admin-abstract-fl...

noreply at shibboleth.net noreply at shibboleth.net
Tue Mar 7 21:17:44 EST 2017


Author: scantor
Date: Tue Mar  7 21:17:43 2017
New Revision: 8672

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=8672&view=rev
Log:
BPr8639 - Fix runtime exception logging when getCause is null

Modified:
    branches/3.3/   (props changed)
    branches/3.3/idp-conf/src/main/resources/system/flows/admin/admin-abstract-flow.xml
    branches/3.3/idp-conf/src/main/resources/system/flows/authn/authn-abstract-flow.xml
    branches/3.3/idp-conf/src/main/resources/system/flows/c14n/subject-c14n-abstract-flow.xml
    branches/3.3/idp-conf/src/main/resources/system/flows/cas/cas-abstract-flow.xml
    branches/3.3/idp-conf/src/main/resources/system/flows/client-storage/client-storage-read-flow.xml
    branches/3.3/idp-conf/src/main/resources/system/flows/client-storage/client-storage-write-flow.xml
    branches/3.3/idp-conf/src/main/resources/system/flows/intercept/intercept-abstract-flow.xml
    branches/3.3/idp-conf/src/main/resources/system/flows/logout/logout-flow.xml
    branches/3.3/idp-conf/src/main/resources/system/flows/logout/logout-propagation-flow.xml
    branches/3.3/idp-conf/src/main/resources/system/flows/logout/propagation/saml2-flow.xml
    branches/3.3/idp-conf/src/main/resources/system/flows/saml/saml-abstract-flow.xml

Modified: branches/3.3/idp-conf/src/main/resources/system/flows/admin/admin-abstract-flow.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/branches/3.3/idp-conf/src/main/resources/system/flows/admin/admin-abstract-flow.xml?rev=8672&r1=8671&r2=8672&view=diff
==============================================================================
--- branches/3.3/idp-conf/src/main/resources/system/flows/admin/admin-abstract-flow.xml	(original)
+++ branches/3.3/idp-conf/src/main/resources/system/flows/admin/admin-abstract-flow.xml	Tue Mar  7 21:17:43 2017
@@ -105,7 +105,7 @@
 
     <action-state id="LogRuntimeException">
         <on-entry>
-            <evaluate expression="T(org.slf4j.LoggerFactory).getLogger('net.shibboleth.idp.profile').error('Uncaught runtime exception', flowExecutionException.getCause())" />
+            <evaluate expression="T(org.slf4j.LoggerFactory).getLogger('net.shibboleth.idp.profile').error('Uncaught runtime exception', flowExecutionException.getCause() ?: flowExecutionException)" />
         </on-entry>
         <evaluate expression="'RuntimeException'" />
         <transition to="HandleError" />

Modified: branches/3.3/idp-conf/src/main/resources/system/flows/authn/authn-abstract-flow.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/branches/3.3/idp-conf/src/main/resources/system/flows/authn/authn-abstract-flow.xml?rev=8672&r1=8671&r2=8672&view=diff
==============================================================================
--- branches/3.3/idp-conf/src/main/resources/system/flows/authn/authn-abstract-flow.xml	(original)
+++ branches/3.3/idp-conf/src/main/resources/system/flows/authn/authn-abstract-flow.xml	Tue Mar  7 21:17:43 2017
@@ -32,7 +32,7 @@
     <end-state id="SubjectCanonicalizationError" />
 
     <action-state id="LogRuntimeException">
-        <evaluate expression="T(org.slf4j.LoggerFactory).getLogger('net.shibboleth.idp.authn').error('Uncaught runtime exception', flowExecutionException.getCause())" />
+        <evaluate expression="T(org.slf4j.LoggerFactory).getLogger('net.shibboleth.idp.authn').error('Uncaught runtime exception', flowExecutionException.getCause() ?: flowExecutionException)" />
         <transition to="RuntimeException" />
     </action-state>
 

Modified: branches/3.3/idp-conf/src/main/resources/system/flows/c14n/subject-c14n-abstract-flow.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/branches/3.3/idp-conf/src/main/resources/system/flows/c14n/subject-c14n-abstract-flow.xml?rev=8672&r1=8671&r2=8672&view=diff
==============================================================================
--- branches/3.3/idp-conf/src/main/resources/system/flows/c14n/subject-c14n-abstract-flow.xml	(original)
+++ branches/3.3/idp-conf/src/main/resources/system/flows/c14n/subject-c14n-abstract-flow.xml	Tue Mar  7 21:17:43 2017
@@ -22,7 +22,7 @@
     <end-state id="SubjectCanonicalizationError" />
 
     <action-state id="LogRuntimeException">
-        <evaluate expression="T(org.slf4j.LoggerFactory).getLogger('net.shibboleth.idp.authn').error('Uncaught runtime exception', flowExecutionException.getCause())" />
+        <evaluate expression="T(org.slf4j.LoggerFactory).getLogger('net.shibboleth.idp.authn').error('Uncaught runtime exception', flowExecutionException.getCause() ?: flowExecutionException)" />
         <transition to="RuntimeException" />
     </action-state>
 

Modified: branches/3.3/idp-conf/src/main/resources/system/flows/cas/cas-abstract-flow.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/branches/3.3/idp-conf/src/main/resources/system/flows/cas/cas-abstract-flow.xml?rev=8672&r1=8671&r2=8672&view=diff
==============================================================================
--- branches/3.3/idp-conf/src/main/resources/system/flows/cas/cas-abstract-flow.xml	(original)

[... 116 lines stripped ...]


More information about the commits mailing list