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 2009/04/01 20:57:33 UTC

svn commit: r761012 - in /cxf/branches/2.1.x-fixes: ./ systests/src/test/java/org/apache/cxf/systest/jaxws/JaxwsExecutorTest.java

Author: dkulp
Date: Wed Apr  1 18:57:33 2009
New Revision: 761012

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

........
  r760938 | sergeyb | 2009-04-01 11:56:18 -0400 (Wed, 01 Apr 2009) | 1 line
  
  Increasing a bit the number of iterations and time delays for JAXWsExecutorTest
........

Modified:
    cxf/branches/2.1.x-fixes/   (props changed)
    cxf/branches/2.1.x-fixes/systests/src/test/java/org/apache/cxf/systest/jaxws/JaxwsExecutorTest.java

Propchange: cxf/branches/2.1.x-fixes/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Wed Apr  1 18:57:33 2009
@@ -1 +1 @@
-/cxf/trunk:743446,753380,753397,753421,754585,755365,757499,757859,757899,757935,757951,758195,758303,758308,758378,758690,758910,759890,759961,759963-759964,759966,760029,760073,760150,760171,760178,760198,760212,760456,760468,760582
+/cxf/trunk:743446,753380,753397,753421,754585,755365,757499,757859,757899,757935,757951,758195,758303,758308,758378,758690,758910,759890,759961,759963-759964,759966,760029,760073,760150,760171,760178,760198,760212,760456,760468,760582,760938

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

Modified: cxf/branches/2.1.x-fixes/systests/src/test/java/org/apache/cxf/systest/jaxws/JaxwsExecutorTest.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.1.x-fixes/systests/src/test/java/org/apache/cxf/systest/jaxws/JaxwsExecutorTest.java?rev=761012&r1=761011&r2=761012&view=diff
==============================================================================
--- cxf/branches/2.1.x-fixes/systests/src/test/java/org/apache/cxf/systest/jaxws/JaxwsExecutorTest.java (original)
+++ cxf/branches/2.1.x-fixes/systests/src/test/java/org/apache/cxf/systest/jaxws/JaxwsExecutorTest.java Wed Apr  1 18:57:33 2009
@@ -102,8 +102,8 @@
         
         Response<GreetMeResponse>  response = proxy.greetMeAsync("cxf");
         int waitCount = 0;
-        while (!response.isDone() && waitCount < 10) {
-            Thread.sleep(100);
+        while (!response.isDone() && waitCount < 15) {
+            Thread.sleep(1000);
             waitCount++;
         }
         assertTrue("Response still not received.", response.isDone());