You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by on...@apache.org on 2019/08/01 01:59:48 UTC

[geode] branch develop updated: GEODE-6897: fix flaky test

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

onichols 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 299694d  GEODE-6897: fix flaky test
299694d is described below

commit 299694dd881a47d4240452568c5c27b023e51541
Author: Owen Nichols <on...@pivotal.io>
AuthorDate: Wed Jul 31 18:59:11 2019 -0700

    GEODE-6897: fix flaky test
---
 .../geode/management/internal/operation/OperationManagerTest.java      | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/geode-core/src/test/java/org/apache/geode/management/internal/operation/OperationManagerTest.java b/geode-core/src/test/java/org/apache/geode/management/internal/operation/OperationManagerTest.java
index 9d50e40..68d48c0 100644
--- a/geode-core/src/test/java/org/apache/geode/management/internal/operation/OperationManagerTest.java
+++ b/geode-core/src/test/java/org/apache/geode/management/internal/operation/OperationManagerTest.java
@@ -35,8 +35,7 @@ public class OperationManagerTest {
 
   @Before
   public void setUp() throws Exception {
-    executorManager =
-        new OperationManager(null, new OperationHistoryManager(500, TimeUnit.MILLISECONDS));
+    executorManager = new OperationManager(null, new OperationHistoryManager(1, TimeUnit.MINUTES));
     executorManager.registerOperation(TestOperation.class, OperationManagerTest::perform);
   }