git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk@521493
13f79535-47bb-0310-9956-
ffa450edef68
else
cancelledKey(sk,SocketStatus.STOP,false);
}
+ }catch ( IOException x ) {
+ if ( log.isDebugEnabled() ) log.warn("Unable to complete send file", x);
+ cancelledKey(sk,SocketStatus.ERROR,false);
}catch ( Throwable t ) {
log.error("",t);
- cancelledKey(sk, SocketStatus.ERROR);
+ cancelledKey(sk, SocketStatus.ERROR, false);
}
}
error = false;
fairness = 0;
lastRegistered = 0;
+ sendfileData = null;
}
public void reset() {
<subsection name="Catalina">
<changelog>
<add>
+ Added SENDFILE support for the NIO connector. (fhanik)
+ </add>
+ <add>
Added support for shared thread pools by adding in the <Executor>
element as a nested element to the <Service> element. (fhanik)
</add>