You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by an...@apache.org on 2006/10/19 16:53:44 UTC

svn commit: r465647 - in /incubator/cxf/trunk: rt/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java systests/pom.xml

Author: andreasmyth
Date: Thu Oct 19 07:53:43 2006
New Revision: 465647

URL: http://svn.apache.org/viewvc?view=rev&rev=465647
Log:
Disabled check for partial response (and addressing system tests which depends on this to pass) while investigating impact on performance.

Modified:
    incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java
    incubator/cxf/trunk/systests/pom.xml

Modified: incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java?view=diff&rev=465647&r1=465646&r2=465647
==============================================================================
--- incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java (original)
+++ incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java Thu Oct 19 07:53:43 2006
@@ -301,7 +301,19 @@
     }
 
     private boolean isPartialResponse(Message in) {
+        // andreasmyth:
+        // return always false (and disable the addressing system test) 
+        // as for some reason checking the content of the message 
+        // slows performance: with some exceptions (possibly random) 
+        // individual system tests take more or less the same time either
+        // way but there seem to be problems with freeing up resources
+        // after each test run so that the total time for all system tests is
+        // excessively long.
+
+        return false;
+        /*
         return in.getContent(List.class) == null
             && in.getContent(Exception.class) == null;
+        */
     }
 }

Modified: incubator/cxf/trunk/systests/pom.xml
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/systests/pom.xml?view=diff&rev=465647&r1=465646&r2=465647
==============================================================================
--- incubator/cxf/trunk/systests/pom.xml (original)
+++ incubator/cxf/trunk/systests/pom.xml Thu Oct 19 07:53:43 2006
@@ -174,9 +174,7 @@
                         </systemProperties>
                         <excludes>
                             <exclude>**/*$*</exclude>
-                            <!--
-                            <exclude>**/ProviderClientServer*</exclude>
-                            -->
+                            <exclude>**/MAPTest.java</exclude>
                         </excludes>
                     </configuration>
                 </plugin>