Return-Path: Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: (qmail 30363 invoked from network); 1 Apr 2009 18:57:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 1 Apr 2009 18:57:55 -0000 Received: (qmail 89437 invoked by uid 500); 1 Apr 2009 18:57:54 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 89357 invoked by uid 500); 1 Apr 2009 18:57:54 -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 89348 invoked by uid 99); 1 Apr 2009 18:57:54 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Apr 2009 18:57:54 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.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; Wed, 01 Apr 2009 18:57:53 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 9A80B2388970; Wed, 1 Apr 2009 18:57:33 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r761012 - in /cxf/branches/2.1.x-fixes: ./ systests/src/test/java/org/apache/cxf/systest/jaxws/JaxwsExecutorTest.java Date: Wed, 01 Apr 2009 18:57:33 -0000 To: commits@cxf.apache.org From: dkulp@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090401185733.9A80B2388970@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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 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());