Author: markt Date: Tue May 26 11:37:31 2015 New Revision: 1681743 URL: http://svn.apache.org/r1681743 Log: Remove duplicated code (this is handled in the Http11InputBuffer)
Modified: tomcat/trunk/java/org/apache/coyote/http11/Http11Processor.java Modified: tomcat/trunk/java/org/apache/coyote/http11/Http11Processor.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/coyote/http11/Http11Processor.java?rev=1681743&r1=1681742&r2=1681743&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/coyote/http11/Http11Processor.java (original) +++ tomcat/trunk/java/org/apache/coyote/http11/Http11Processor.java Tue May 26 11:37:31 2015 @@ -1150,9 +1150,6 @@ public class Http11Processor extends Abs // Check to see if we have read any of the request line yet if (inputBuffer.getParsingRequestLinePhase() > 1) { // Started to read request line. - if (request.getStartTime() < 0) { - request.setStartTime(System.currentTimeMillis()); - } if (endpoint.isPaused()) { // Partially processed the request so need to respond response.setStatus(503); --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org