From 8d1f6493cb08d6377f9b57dc55172531919828f8 Mon Sep 17 00:00:00 2001 From: remm Date: Wed, 25 Apr 2007 16:48:19 +0000 Subject: [PATCH] - Remove fixme for the timeout hack. I think this timeout has a lot in common with the keep alive value in terms of resource use, so the normal behavior seems good enough. git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk@532405 13f79535-47bb-0310-9956-ffa450edef68 --- java/org/apache/tomcat/util/net/AprEndpoint.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/java/org/apache/tomcat/util/net/AprEndpoint.java b/java/org/apache/tomcat/util/net/AprEndpoint.java index 8969acdfd..b23a9ef5d 100644 --- a/java/org/apache/tomcat/util/net/AprEndpoint.java +++ b/java/org/apache/tomcat/util/net/AprEndpoint.java @@ -1160,11 +1160,6 @@ public class AprEndpoint { if (timeout < 0) { timeout = soTimeout; } - if (comet) { - // FIXME: Find an appropriate timeout value, for now, "longer than usual" - // semms appropriate - timeout = soTimeout * 50; - } serverPollset = allocatePoller(size, pool, timeout); if (serverPollset == 0 && size > 1024) { size = 1024; -- 2.11.0