Author: fhanik Date: Thu Jun 22 10:09:14 2006 New Revision: 416423 URL: http://svn.apache.org/viewvc?rev=416423&view=rev Log: must come up with a better sleep, this brings the nio connector up to the same speed as the io connector however, there is a risk for cpu contention on slow clients, fix will be coming
Modified: tomcat/tc6.0.x/trunk/java/org/apache/coyote/http11/InternalNioInputBuffer.java Modified: tomcat/tc6.0.x/trunk/java/org/apache/coyote/http11/InternalNioInputBuffer.java URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/java/org/apache/coyote/http11/InternalNioInputBuffer.java?rev=416423&r1=416422&r2=416423&view=diff ============================================================================== --- tomcat/tc6.0.x/trunk/java/org/apache/coyote/http11/InternalNioInputBuffer.java (original) +++ tomcat/tc6.0.x/trunk/java/org/apache/coyote/http11/InternalNioInputBuffer.java Thu Jun 22 10:09:14 2006 @@ -551,7 +551,7 @@ return false; } timedOut = (readTimeout != -1) && ((System.currentTimeMillis()-start)>this.readTimeout); - if ( !timedOut && nRead == 0 ) try {Thread.sleep(25);}catch ( Exception x ) {} + //if ( !timedOut && nRead == 0 ) try {Thread.sleep(5);}catch ( Exception x ) {} }while ( nRead == 0 && (!timedOut) ); //else throw new IOException(sm.getString("iib.failedread")); return false; //timeout --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]