Return-Path: Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: (qmail 83896 invoked from network); 29 Mar 2011 13:27:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 29 Mar 2011 13:27:46 -0000 Received: (qmail 22290 invoked by uid 500); 29 Mar 2011 13:27:46 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 22233 invoked by uid 500); 29 Mar 2011 13:27:46 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 22222 invoked by uid 99); 29 Mar 2011 13:27:46 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 29 Mar 2011 13:27:46 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.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; Tue, 29 Mar 2011 13:27:45 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 9AB6D2388994; Tue, 29 Mar 2011 13:27:25 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1086576 - in /cxf/branches/2.3.x-fixes: ./ rt/core/src/main/java/org/apache/cxf/endpoint/ServerImpl.java Date: Tue, 29 Mar 2011 13:27:25 -0000 To: commits@cxf.apache.org From: ningjiang@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110329132725.9AB6D2388994@eris.apache.org> Author: ningjiang Date: Tue Mar 29 13:27:25 2011 New Revision: 1086576 URL: http://svn.apache.org/viewvc?rev=1086576&view=rev Log: Merged revisions 1086573 via svnmerge from https://svn.apache.org/repos/asf/cxf/trunk ........ r1086573 | ningjiang | 2011-03-29 21:17:46 +0800 (Tue, 29 Mar 2011) | 1 line CXF-3429 shutdown the destination before set the MessageObserver to be null ........ Modified: cxf/branches/2.3.x-fixes/ (props changed) cxf/branches/2.3.x-fixes/rt/core/src/main/java/org/apache/cxf/endpoint/ServerImpl.java Propchange: cxf/branches/2.3.x-fixes/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Tue Mar 29 13:27:25 2011 @@ -1 +1 @@ -/cxf/trunk:1084966,1086102,1086115,1086535 +/cxf/trunk:1084966,1086102,1086115,1086535,1086573 Propchange: cxf/branches/2.3.x-fixes/ ------------------------------------------------------------------------------ Binary property 'svnmerge-integrated' - no diff available. Modified: cxf/branches/2.3.x-fixes/rt/core/src/main/java/org/apache/cxf/endpoint/ServerImpl.java URL: http://svn.apache.org/viewvc/cxf/branches/2.3.x-fixes/rt/core/src/main/java/org/apache/cxf/endpoint/ServerImpl.java?rev=1086576&r1=1086575&r2=1086576&view=diff ============================================================================== --- cxf/branches/2.3.x-fixes/rt/core/src/main/java/org/apache/cxf/endpoint/ServerImpl.java (original) +++ cxf/branches/2.3.x-fixes/rt/core/src/main/java/org/apache/cxf/endpoint/ServerImpl.java Tue Mar 29 13:27:25 2011 @@ -157,8 +157,8 @@ public class ServerImpl implements Serve return; } } - getDestination().setMessageObserver(null); getDestination().shutdown(); + getDestination().setMessageObserver(null); } public void destroy() {