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 2021/02/02 17:04:43 UTC

[geode] 03/06: GEODE-8110: Ignore AlertingIOException in JMXMBeanReconnectDUnitTest (#5323)

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

klund pushed a commit to branch support/1.13
in repository https://gitbox.apache.org/repos/asf/geode.git

commit 9f358f305acf590ac5e6f2b2dcd0790de61a8986
Author: Kirk Lund <kl...@apache.org>
AuthorDate: Mon Jun 29 15:14:56 2020 -0700

    GEODE-8110: Ignore AlertingIOException in JMXMBeanReconnectDUnitTest (#5323)
    
    (cherry picked from commit 3f3b77e8a519c4d812c0eb008a38ae0c5b1c1a99)
---
 .../java/org/apache/geode/management/JMXMBeanReconnectDUnitTest.java    | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/geode-core/src/distributedTest/java/org/apache/geode/management/JMXMBeanReconnectDUnitTest.java b/geode-core/src/distributedTest/java/org/apache/geode/management/JMXMBeanReconnectDUnitTest.java
index bc49a86..85c8629 100644
--- a/geode-core/src/distributedTest/java/org/apache/geode/management/JMXMBeanReconnectDUnitTest.java
+++ b/geode-core/src/distributedTest/java/org/apache/geode/management/JMXMBeanReconnectDUnitTest.java
@@ -61,6 +61,7 @@ import org.junit.experimental.categories.Category;
 
 import org.apache.geode.CancelException;
 import org.apache.geode.ForcedDisconnectException;
+import org.apache.geode.alerting.internal.spi.AlertingIOException;
 import org.apache.geode.cache.CacheClosedException;
 import org.apache.geode.distributed.DistributedSystemDisconnectedException;
 import org.apache.geode.distributed.LocatorLauncher;
@@ -157,6 +158,7 @@ public class JMXMBeanReconnectDUnitTest implements Serializable {
     String createRegionCommand = "create region --type=REPLICATE --name=" + SEPARATOR + regionName;
     gfsh.executeAndAssertThat(createRegionCommand).statusIsSuccess();
 
+    addIgnoredException(AlertingIOException.class);
     addIgnoredException(CacheClosedException.class);
     addIgnoredException(CancelException.class);
     addIgnoredException(DistributedSystemDisconnectedException.class);