comparison src/org/eclipse/jetty/server/nio/BlockingChannelConnector.java @ 1005:0e96ce3db20a

remove HttpBuffers
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 23 Oct 2016 02:42:05 -0600
parents 3fa54d9d19cd
children 2b769da7f67d
comparison
equal deleted inserted replaced
1004:3fa54d9d19cd 1005:0e96ce3db20a
209 _connection.handle(); 209 _connection.handle();
210 if( isOpen() ) throw new RuntimeException(); 210 if( isOpen() ) throw new RuntimeException();
211 } 211 }
212 catch (EofException e) 212 catch (EofException e)
213 { 213 {
214 LOG.debug("EOF", e); 214 LOG.warn("EOF", e);
215 try{BlockingChannelEndPoint.this.close();} 215 // LOG.debug("EOF", e);
216 try{close();}
216 catch(IOException e2){LOG.trace("",e2);} 217 catch(IOException e2){LOG.trace("",e2);}
217 } 218 }
218 catch (HttpException e) 219 catch (HttpException e)
219 { 220 {
220 LOG.debug("BAD", e); 221 LOG.warn("BAD", e);
222 // LOG.debug("BAD", e);
221 try{close();} 223 try{close();}
222 catch(IOException e2){LOG.trace("",e2);} 224 catch(IOException e2){LOG.trace("",e2);}
223 } 225 }
224 catch(Throwable e) 226 catch(Throwable e)
225 { 227 {