Don't swallow exceptions unnecessarily
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@964216
13f79535-47bb-0310-9956-
ffa450edef68
do {
try {
Thread.sleep(100);
- }catch ( Exception sleep) {}
+ } catch (InterruptedException sleep) { /* Ignore */ }
reqNow = System.currentTimeMillis();
isTimeout=((reqNow-reqStart)>(1000*60));
} while ( (!isStateTransferred()) && (!isTimeout));
<subsection name="Cluster">
<changelog>
<fix>
+ <bug>49127</bug>: Don't swallow exceptions unnecessarily in
+ <code>SimpleTcpReplicationManager.startInternal()</code>. (markt)
+ </fix>
+ <fix>
<bug>49445</bug>: When session ID is changed after authentication,
ensure the DeltaManager replicates the change in ID to the other nodes
in the cluster. (kfujino)