[java-shib-idp2 COMMIT] /branches/REL_2/src/main/java/edu/internet2/middleware/shibboleth/idp/session/IdPSessionFilte...

noreply at shibboleth.net noreply at shibboleth.net
Tue Dec 11 23:05:12 EST 2012


Author: scantor
Date: Tue Dec 11 23:05:12 2012
New Revision: 3128

URL: http://svn.shibboleth.net/view/java-shib-idp2?rev=3128&view=rev
Log:
Soften address mismatch logging to warn

Modified:
    branches/REL_2/src/main/java/edu/internet2/middleware/shibboleth/idp/session/IdPSessionFilter.java

Modified: branches/REL_2/src/main/java/edu/internet2/middleware/shibboleth/idp/session/IdPSessionFilter.java
URL: http://svn.shibboleth.net/view/java-shib-idp2/branches/REL_2/src/main/java/edu/internet2/middleware/shibboleth/idp/session/IdPSessionFilter.java?rev=3128&r1=3127&r2=3128&view=diff
==============================================================================
--- branches/REL_2/src/main/java/edu/internet2/middleware/shibboleth/idp/session/IdPSessionFilter.java (original)
+++ branches/REL_2/src/main/java/edu/internet2/middleware/shibboleth/idp/session/IdPSessionFilter.java Tue Dec 11 23:05:12 2012
@@ -208,7 +208,7 @@
             isV4 = clientAddress.contains(".");
             sessionAddress = new String(isV4 ? v4AddressBytes : v6AddressBytes);
             if (!sessionAddress.equals("-") && !clientAddress.equals(sessionAddress)) {
-                log.error("Client sent a cookie from address {} but the cookie was issued to address {}",
+                log.warn("Client sent a cookie from address {} but the cookie was issued to address {}",
                         clientAddress, sessionAddress);
                 return false;
             }



More information about the commits mailing list