You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by je...@apache.org on 2018/03/15 15:41:20 UTC

[geode] branch develop updated: GEODE-4803: Mark test as Flaky and adjust timeout

This is an automated email from the ASF dual-hosted git repository.

jensdeppe pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/develop by this push:
     new 4a6ac46  GEODE-4803: Mark test as Flaky and adjust timeout
4a6ac46 is described below

commit 4a6ac4669e735c6c9e95db8225fafd3cdb176a24
Author: Jens Deppe <jd...@pivotal.io>
AuthorDate: Thu Mar 15 08:40:04 2018 -0700

    GEODE-4803: Mark test as Flaky and adjust timeout
---
 .../internal/cli/commands/ConcurrentDeployDUnitTest.java         | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/ConcurrentDeployDUnitTest.java b/geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/ConcurrentDeployDUnitTest.java
index 0dbc258..3daf31b 100644
--- a/geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/ConcurrentDeployDUnitTest.java
+++ b/geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/ConcurrentDeployDUnitTest.java
@@ -27,11 +27,12 @@ import org.apache.geode.test.dunit.AsyncInvocation;
 import org.apache.geode.test.dunit.VM;
 import org.apache.geode.test.dunit.rules.ClusterStartupRule;
 import org.apache.geode.test.junit.categories.DistributedTest;
+import org.apache.geode.test.junit.categories.FlakyTest;
 import org.apache.geode.test.junit.rules.GfshCommandRule;
 import org.apache.geode.test.junit.rules.JarFileRule;
 import org.apache.geode.test.junit.rules.LocatorStarterRule;
 
-@Category(DistributedTest.class)
+@Category({DistributedTest.class, FlakyTest.class})
 public class ConcurrentDeployDUnitTest {
 
   @Rule
@@ -66,9 +67,9 @@ public class ConcurrentDeployDUnitTest {
     AsyncInvocation gfsh2Invocation = gfsh2.invokeAsync(() -> loopThroughDeployAndUndeploys(jar1));
     AsyncInvocation gfsh3Invocation = gfsh3.invokeAsync(() -> loopThroughDeployAndUndeploys(jar1));
 
-    gfsh1Invocation.await(5, TimeUnit.MINUTES);
-    gfsh2Invocation.await(5, TimeUnit.MINUTES);
-    gfsh3Invocation.await(5, TimeUnit.MINUTES);
+    gfsh1Invocation.await(30, TimeUnit.MINUTES);
+    gfsh2Invocation.await(30, TimeUnit.MINUTES);
+    gfsh3Invocation.await(30, TimeUnit.MINUTES);
   }
 
   @After

-- 
To stop receiving notification emails like this one, please contact
jensdeppe@apache.org.