Return-Path: Delivered-To: apmail-tomcat-dev-archive@www.apache.org Received: (qmail 63290 invoked from network); 14 Jul 2010 21:41:07 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 14 Jul 2010 21:41:07 -0000 Received: (qmail 94991 invoked by uid 500); 14 Jul 2010 21:41:06 -0000 Delivered-To: apmail-tomcat-dev-archive@tomcat.apache.org Received: (qmail 94848 invoked by uid 500); 14 Jul 2010 21:41:06 -0000 Mailing-List: contact dev-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Developers List" Delivered-To: mailing list dev@tomcat.apache.org Received: (qmail 94839 invoked by uid 99); 14 Jul 2010 21:41:06 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Jul 2010 21:41:06 +0000 X-ASF-Spam-Status: No, hits=-1996.4 required=10.0 tests=ALL_TRUSTED,FS_REPLICA X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Jul 2010 21:41:03 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 81E9B2388906; Wed, 14 Jul 2010 21:39:40 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r964216 - in /tomcat/trunk: java/org/apache/catalina/ha/session/SimpleTcpReplicationManager.java webapps/docs/changelog.xml Date: Wed, 14 Jul 2010 21:39:40 -0000 To: dev@tomcat.apache.org From: markt@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100714213940.81E9B2388906@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: markt Date: Wed Jul 14 21:39:40 2010 New Revision: 964216 URL: http://svn.apache.org/viewvc?rev=964216&view=rev Log: Fxi https://issues.apache.org/bugzilla/show_bug.cgi?id=49127 Don't swallow exceptions unnecessarily Modified: tomcat/trunk/java/org/apache/catalina/ha/session/SimpleTcpReplicationManager.java tomcat/trunk/webapps/docs/changelog.xml Modified: tomcat/trunk/java/org/apache/catalina/ha/session/SimpleTcpReplicationManager.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/ha/session/SimpleTcpReplicationManager.java?rev=964216&r1=964215&r2=964216&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/catalina/ha/session/SimpleTcpReplicationManager.java (original) +++ tomcat/trunk/java/org/apache/catalina/ha/session/SimpleTcpReplicationManager.java Wed Jul 14 21:39:40 2010 @@ -520,7 +520,7 @@ public class SimpleTcpReplicationManager do { try { Thread.sleep(100); - }catch ( Exception sleep) {} + } catch (InterruptedException sleep) { /* Ignore */ } reqNow = System.currentTimeMillis(); isTimeout=((reqNow-reqStart)>(1000*60)); } while ( (!isStateTransferred()) && (!isTimeout)); Modified: tomcat/trunk/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=964216&r1=964215&r2=964216&view=diff ============================================================================== --- tomcat/trunk/webapps/docs/changelog.xml (original) +++ tomcat/trunk/webapps/docs/changelog.xml Wed Jul 14 21:39:40 2010 @@ -190,6 +190,10 @@ + 49127: Don't swallow exceptions unnecessarily in + SimpleTcpReplicationManager.startInternal(). (markt) + + 49445: When session ID is changed after authentication, ensure the DeltaManager replicates the change in ID to the other nodes in the cluster. (kfujino) --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org