Return-Path: Delivered-To: apmail-incubator-directory-cvs-archive@www.apache.org Received: (qmail 82641 invoked from network); 16 Sep 2004 15:09:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 16 Sep 2004 15:09:34 -0000 Received: (qmail 60500 invoked by uid 500); 16 Sep 2004 15:08:35 -0000 Delivered-To: apmail-incubator-directory-cvs-archive@incubator.apache.org Received: (qmail 60410 invoked by uid 500); 16 Sep 2004 15:08:33 -0000 Mailing-List: contact directory-cvs-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: directory-dev@incubator.apache.org Delivered-To: mailing list directory-cvs@incubator.apache.org Received: (qmail 60311 invoked by uid 99); 16 Sep 2004 15:08:32 -0000 X-ASF-Spam-Status: No, hits=-10.0 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Thu, 16 Sep 2004 08:08:31 -0700 Received: (qmail 81974 invoked by uid 65534); 16 Sep 2004 15:08:29 -0000 Date: 16 Sep 2004 15:08:29 -0000 Message-ID: <20040916150829.81972.qmail@minotaur.apache.org> From: akarasulu@apache.org To: directory-cvs@incubator.apache.org Subject: svn commit: rev 46186 - incubator/directory/seda/trunk/src/java/org/apache/seda/decoder X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Author: akarasulu Date: Thu Sep 16 08:08:28 2004 New Revision: 46186 Modified: incubator/directory/seda/trunk/src/java/org/apache/seda/decoder/DefaultDecoderManager.java Log: Applying Trustin's patch for the bug I introduced last night. More details for this are in the following JIRA bug: http://issues.apache.org/jira/browse/DIRSEDA-7 Modified: incubator/directory/seda/trunk/src/java/org/apache/seda/decoder/DefaultDecoderManager.java ============================================================================== --- incubator/directory/seda/trunk/src/java/org/apache/seda/decoder/DefaultDecoderManager.java (original) +++ incubator/directory/seda/trunk/src/java/org/apache/seda/decoder/DefaultDecoderManager.java Thu Sep 16 08:08:28 2004 @@ -332,7 +332,7 @@ { decoder = ( StatefulDecoder ) decoders.get( key ); - if ( decoder == null ) + while ( decoder == null ) { try { @@ -342,6 +342,8 @@ { e.printStackTrace(); } + + decoder = ( StatefulDecoder ) decoders.get( key ); } }