You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2011/11/30 02:55:09 UTC

svn commit: r1208212 - in /cxf/branches/2.4.x-fixes: ./ rt/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java

Author: dkulp
Date: Wed Nov 30 01:54:40 2011
New Revision: 1208212

URL: http://svn.apache.org/viewvc?rev=1208212&view=rev
Log:
Merged revisions 1208100 via svnmerge from 
https://svn.apache.org/repos/asf/cxf/trunk

........
  r1208100 | dkulp | 2011-11-29 16:58:23 -0500 (Tue, 29 Nov 2011) | 2 lines
  
  [CXF-3916] Fix for partial response and async messages
  Patch from Jesse Pangburn applied
........

Modified:
    cxf/branches/2.4.x-fixes/   (props changed)
    cxf/branches/2.4.x-fixes/rt/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java

Propchange: cxf/branches/2.4.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: cxf/branches/2.4.x-fixes/rt/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.4.x-fixes/rt/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java?rev=1208212&r1=1208211&r2=1208212&view=diff
==============================================================================
--- cxf/branches/2.4.x-fixes/rt/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java (original)
+++ cxf/branches/2.4.x-fixes/rt/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java Wed Nov 30 01:54:40 2011
@@ -822,7 +822,7 @@ public class ClientImpl
             }
         } finally {
             synchronized (message.getExchange()) {
-                if (!isPartialResponse(message) && callback == null) {
+                if (!isPartialResponse(message) || callback == null) {
                     message.getExchange().put(FINISHED, Boolean.TRUE);
                     message.getExchange().setInMessage(message);
                     message.getExchange().notifyAll();