You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by kl...@apache.org on 2017/05/19 21:53:31 UTC

geode git commit: GEODE-1930: temporarily disable verifySystemNotifications

Repository: geode
Updated Branches:
  refs/heads/develop d16d192b2 -> 88631957e


GEODE-1930: temporarily disable verifySystemNotifications

* verifySystemNotifications is very flaky and we need to
determine what async state to Await for


Project: http://git-wip-us.apache.org/repos/asf/geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/geode/commit/88631957
Tree: http://git-wip-us.apache.org/repos/asf/geode/tree/88631957
Diff: http://git-wip-us.apache.org/repos/asf/geode/diff/88631957

Branch: refs/heads/develop
Commit: 88631957e9bc570115ed150eceed9a1b8b470a01
Parents: d16d192
Author: Kirk Lund <kl...@apache.org>
Authored: Thu May 18 14:57:26 2017 -0700
Committer: Kirk Lund <kl...@apache.org>
Committed: Fri May 19 14:17:39 2017 -0700

----------------------------------------------------------------------
 .../org/apache/geode/management/RegionManagementDUnitTest.java    | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/geode/blob/88631957/geode-core/src/test/java/org/apache/geode/management/RegionManagementDUnitTest.java
----------------------------------------------------------------------
diff --git a/geode-core/src/test/java/org/apache/geode/management/RegionManagementDUnitTest.java b/geode-core/src/test/java/org/apache/geode/management/RegionManagementDUnitTest.java
index 7dabd61..cb35663 100644
--- a/geode-core/src/test/java/org/apache/geode/management/RegionManagementDUnitTest.java
+++ b/geode-core/src/test/java/org/apache/geode/management/RegionManagementDUnitTest.java
@@ -258,7 +258,8 @@ public class RegionManagementDUnitTest extends ManagementTestBase {
     closeRegion(this.managerVM, REGION_PATH);
     verifyDistributedMBean(this.managerVM, 0);
 
-    verifySystemNotifications(this.managerVM, REGION_NAME, 3);
+    // TODO: GEODE-1930: next line is too flaky and needs to be fixed
+    // verifySystemNotifications(this.managerVM, REGION_NAME, 3);
   }
 
   @Test