git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk@522774
13f79535-47bb-0310-9956-
ffa450edef68
// Ignore
}
}
+ }catch ( IOException x ) {
+ if ( running ) log.error(sm.getString("endpoint.accept.fail"), x);
} catch (Throwable t) {
log.error(sm.getString("endpoint.accept.fail"), t);
}
}
}
}
+ }catch ( IOException x ) {
+ if ( running ) log.error(sm.getString("endpoint.accept.fail"), x);
} catch (OutOfMemoryError oom) {
try {
oomParachuteData = null;
}
}
+
// ---------------------------------------------- TaskQueue Inner Class
public static class TaskQueue extends LinkedBlockingQueue<Runnable> {
ThreadPoolExecutor parent = null;
<subsection name="Catalina">
<changelog>
<fix>
+ <bug>41530 </bug>Don't log error messages when connector is stopped (fhanik)
+ </fix>
+ <fix>
<bug>41166</bug> Invalid handling when using replicated context (fhanik)
</fix>
<add>