330732 removed excess debugging
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@2545 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
parent
1ab88841c8
commit
4d6df56c12
|
@ -7,6 +7,7 @@ jetty-7.2.2-SNAPSHOT
|
||||||
+ 330417 Atomic PUT in PutFilter
|
+ 330417 Atomic PUT in PutFilter
|
||||||
+ 330419 Reloading webapp duplicates StandardDescriptorProcessor
|
+ 330419 Reloading webapp duplicates StandardDescriptorProcessor
|
||||||
+ 330686 OSGi: Make org.eclipse.jetty.jsp-2.1 a fragment of org.apache.jasper.glassfish
|
+ 330686 OSGi: Make org.eclipse.jetty.jsp-2.1 a fragment of org.apache.jasper.glassfish
|
||||||
|
+ 330732 Removed System.err debugging
|
||||||
|
|
||||||
jetty-7.2.1.v20101111 11 November 2010
|
jetty-7.2.1.v20101111 11 November 2010
|
||||||
+ 324679 Fixed dedection of write before static content
|
+ 324679 Fixed dedection of write before static content
|
||||||
|
|
|
@ -61,9 +61,6 @@ public class Ajp13SocketConnector extends SocketConnector
|
||||||
super.customize(endpoint,request);
|
super.customize(endpoint,request);
|
||||||
if (request.isSecure())
|
if (request.isSecure())
|
||||||
request.setScheme(HttpSchemes.HTTPS);
|
request.setScheme(HttpSchemes.HTTPS);
|
||||||
|
|
||||||
System.err.println("Customize "+endpoint+" "+request);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ------------------------------------------------------------ */
|
/* ------------------------------------------------------------ */
|
||||||
|
|
|
@ -197,7 +197,6 @@ public class BlockingChannelConnector extends AbstractNIOConnector
|
||||||
{
|
{
|
||||||
if (_idleTimestamp!=0 && _timeout>0 && now>(_idleTimestamp+_timeout))
|
if (_idleTimestamp!=0 && _timeout>0 && now>(_idleTimestamp+_timeout))
|
||||||
{
|
{
|
||||||
System.err.println("IDLE "+this);
|
|
||||||
idleExpired();
|
idleExpired();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue