Return-Path: Delivered-To: apmail-incubator-sling-commits-archive@minotaur.apache.org Received: (qmail 94586 invoked from network); 11 Jun 2009 09:35:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 11 Jun 2009 09:35:08 -0000 Received: (qmail 37256 invoked by uid 500); 11 Jun 2009 09:35:19 -0000 Delivered-To: apmail-incubator-sling-commits-archive@incubator.apache.org Received: (qmail 37206 invoked by uid 500); 11 Jun 2009 09:35:19 -0000 Mailing-List: contact sling-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: sling-dev@incubator.apache.org Delivered-To: mailing list sling-commits@incubator.apache.org Received: (qmail 37197 invoked by uid 99); 11 Jun 2009 09:35:18 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Jun 2009 09:35:18 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Jun 2009 09:35:16 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id CC2A3238888D; Thu, 11 Jun 2009 09:34:56 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r783711 - /incubator/sling/trunk/bundles/extensions/event/src/main/java/org/apache/sling/event/impl/EventingThreadPool.java Date: Thu, 11 Jun 2009 09:34:56 -0000 To: sling-commits@incubator.apache.org From: cziegeler@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090611093456.CC2A3238888D@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: cziegeler Date: Thu Jun 11 09:34:56 2009 New Revision: 783711 URL: http://svn.apache.org/viewvc?rev=783711&view=rev Log: SLING-987 : Set the eventing thread pool queue to unlimited. Modified: incubator/sling/trunk/bundles/extensions/event/src/main/java/org/apache/sling/event/impl/EventingThreadPool.java Modified: incubator/sling/trunk/bundles/extensions/event/src/main/java/org/apache/sling/event/impl/EventingThreadPool.java URL: http://svn.apache.org/viewvc/incubator/sling/trunk/bundles/extensions/event/src/main/java/org/apache/sling/event/impl/EventingThreadPool.java?rev=783711&r1=783710&r2=783711&view=diff ============================================================================== --- incubator/sling/trunk/bundles/extensions/event/src/main/java/org/apache/sling/event/impl/EventingThreadPool.java (original) +++ incubator/sling/trunk/bundles/extensions/event/src/main/java/org/apache/sling/event/impl/EventingThreadPool.java Thu Jun 11 09:34:56 2009 @@ -48,7 +48,7 @@ private static final int DEFAULT_MIN_POOL_SIZE = 20; // this is sufficient for all threads + approx 10 job queues private static final int DEFAULT_MAX_POOL_SIZE = 30; - private static final int DEFAULT_QUEUE_SIZE = 50; // queue upto 50 threads + private static final int DEFAULT_QUEUE_SIZE = -1; // infinite /** * Activate this component.