Return-Path: Delivered-To: apmail-geronimo-scm-archive@www.apache.org Received: (qmail 73316 invoked from network); 20 Oct 2007 02:26:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 20 Oct 2007 02:26:19 -0000 Received: (qmail 19315 invoked by uid 500); 20 Oct 2007 02:26:07 -0000 Delivered-To: apmail-geronimo-scm-archive@geronimo.apache.org Received: (qmail 19307 invoked by uid 500); 20 Oct 2007 02:26:07 -0000 Mailing-List: contact scm-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@geronimo.apache.org List-Id: Delivered-To: mailing list scm@geronimo.apache.org Received: (qmail 19296 invoked by uid 99); 20 Oct 2007 02:26:07 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Oct 2007 19:26:06 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 Oct 2007 02:26:18 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A858A1A9832; Fri, 19 Oct 2007 19:25:28 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r586657 - /geronimo/server/branches/2.0/modules/geronimo-jetty6/src/main/java/org/apache/geronimo/jetty6/connector/JettyConnector.java Date: Sat, 20 Oct 2007 02:25:28 -0000 To: scm@geronimo.apache.org From: gawor@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071020022528.A858A1A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: gawor Date: Fri Oct 19 19:25:26 2007 New Revision: 586657 URL: http://svn.apache.org/viewvc?rev=586657&view=rev Log: applied patch for GERONIMO-3472 Modified: geronimo/server/branches/2.0/modules/geronimo-jetty6/src/main/java/org/apache/geronimo/jetty6/connector/JettyConnector.java Modified: geronimo/server/branches/2.0/modules/geronimo-jetty6/src/main/java/org/apache/geronimo/jetty6/connector/JettyConnector.java URL: http://svn.apache.org/viewvc/geronimo/server/branches/2.0/modules/geronimo-jetty6/src/main/java/org/apache/geronimo/jetty6/connector/JettyConnector.java?rev=586657&r1=586656&r2=586657&view=diff ============================================================================== --- geronimo/server/branches/2.0/modules/geronimo-jetty6/src/main/java/org/apache/geronimo/jetty6/connector/JettyConnector.java (original) +++ geronimo/server/branches/2.0/modules/geronimo-jetty6/src/main/java/org/apache/geronimo/jetty6/connector/JettyConnector.java Fri Oct 19 19:25:26 2007 @@ -218,8 +218,9 @@ // removed 'minThreads' from persistent and manageable String[] // removed 'tcpNoDelay' from persistent String[] // added 'protocol' to persistent and manageable String[] - infoFactory.addInterface(JettyWebConnector.class, new String[]{"host", "port", "minThreads", "maxThreads", "bufferSizeBytes", "acceptQueueSize", "lingerMillis", "protocol", "redirectPort", "connectUrl", "maxIdleTimeMs"}, - new String[]{"host", "port", "redirectPort", "maxThreads", "minThreads", "protocol"}); + infoFactory.addInterface(JettyWebConnector.class, + new String[]{"host", "port", "minThreads", "maxThreads", "bufferSizeBytes", "acceptQueueSize", "lingerMillis", "protocol", "redirectPort", "connectUrl", "maxIdleTimeMs"}, + new String[]{"host", "port", "minThreads", "maxThreads", "bufferSizeBytes", "acceptQueueSize", "lingerMillis", "protocol", "redirectPort"}); infoFactory.setConstructor(new String[]{"JettyContainer", "ThreadPool"}); GBEAN_INFO = infoFactory.getBeanInfo(); }