enabled JBoss repo for now to get build working in Bamboo
This commit is contained in:
Scott Battaglia 2011-09-11 17:13:56 +00:00
parent d754bc8d8c
commit 91046c779c
2 changed files with 2 additions and 3 deletions

View File

@ -27,7 +27,7 @@
</dependency>
</dependencies>
<!--
<!-- This must be disabled before releasing a production-ready version. -->
<repositories>
<repository>
<id>jboss</id>
@ -35,7 +35,6 @@
<url>http://repository.jboss.com/maven2/</url>
</repository>
</repositories>
-->
<properties>
<jboss.version>5.1.0.GA</jboss.version>

View File

@ -83,7 +83,7 @@ public final class WebAuthenticationFilter extends AbstractCasFilter {
// There is evidence that in some cases the principal can disappear
// in JBoss despite a valid session.
// This block forces consistency between principal and assertion.
log.info("User principal not found. Removing CAS assertion from session to force reauthentication.");
log.info("User principal not found. Removing CAS assertion from session to force re-authentication.");
session.removeAttribute(CONST_CAS_ASSERTION);
}
chain.doFilter(request, response);