[java-identity-provider COMMIT] /trunk/idp-core/src/main/java/net/shibboleth/idp/log/Slf4JMdcServletFilter.java
noreply at shibboleth.net
noreply at shibboleth.net
Fri May 9 11:25:29 EDT 2014
Author: putmanb
Date: Fri May 9 11:25:28 2014
New Revision: 5898
URL: http://svn.shibboleth.net/view/java-identity-provider?rev=5898&view=rev
Log:
Add missing chain.doFilter call.
Modified:
trunk/idp-core/src/main/java/net/shibboleth/idp/log/Slf4JMdcServletFilter.java
Modified: trunk/idp-core/src/main/java/net/shibboleth/idp/log/Slf4JMdcServletFilter.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-core/src/main/java/net/shibboleth/idp/log/Slf4JMdcServletFilter.java?rev=5898&r1=5897&r2=5898&view=diff
==============================================================================
--- trunk/idp-core/src/main/java/net/shibboleth/idp/log/Slf4JMdcServletFilter.java (original)
+++ trunk/idp-core/src/main/java/net/shibboleth/idp/log/Slf4JMdcServletFilter.java Fri May 9 11:25:28 2014
@@ -43,6 +43,8 @@
try {
MDC.put(Version.MDC_ATTRIBUTE, Version.getVersion());
// TODO populate the MDC will other interesting things
+
+ chain.doFilter(request, response);
} finally {
MDC.clear();
}
More information about the commits
mailing list