Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 82824 invoked from network); 1 Nov 2009 18:43:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 1 Nov 2009 18:43:49 -0000 Received: (qmail 96952 invoked by uid 500); 1 Nov 2009 18:43:48 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 96856 invoked by uid 500); 1 Nov 2009 18:43:48 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 96847 invoked by uid 99); 1 Nov 2009 18:43:48 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 01 Nov 2009 18:43:48 +0000 X-ASF-Spam-Status: No, hits=-2.5 required=5.0 tests=AWL,BAYES_00 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; Sun, 01 Nov 2009 18:43:46 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 4CAAA238890E; Sun, 1 Nov 2009 18:43:26 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r831725 - /commons/proper/pool/trunk/xdocs/changes.xml Date: Sun, 01 Nov 2009 18:43:26 -0000 To: commits@commons.apache.org From: psteitz@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091101184326.4CAAA238890E@eris.apache.org> Author: psteitz Date: Sun Nov 1 18:43:25 2009 New Revision: 831725 URL: http://svn.apache.org/viewvc?rev=831725&view=rev Log: Updated changelog for POOL-152 fix. Modified: commons/proper/pool/trunk/xdocs/changes.xml Modified: commons/proper/pool/trunk/xdocs/changes.xml URL: http://svn.apache.org/viewvc/commons/proper/pool/trunk/xdocs/changes.xml?rev=831725&r1=831724&r2=831725&view=diff ============================================================================== --- commons/proper/pool/trunk/xdocs/changes.xml (original) +++ commons/proper/pool/trunk/xdocs/changes.xml Sun Nov 1 18:43:25 2009 @@ -21,7 +21,13 @@ Sandy McArthur - + + + GenericObjectPool can block forever in borrowObject when the pool is exhausted and a newly created + object fails validation. When borrowing an object if a new object is created but validate fails, + the latch should not be returned to the queue as an exception will be thrown. + +