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 2018/03/19 20:57:56 UTC

[geode] branch develop updated: GEODE-4882: Add FlakyTest category to AnalyzeConnectorsSerializablesJUnitTest

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

klund 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 c6dee63  GEODE-4882: Add FlakyTest category to AnalyzeConnectorsSerializablesJUnitTest
c6dee63 is described below

commit c6dee63151030f5ac99c90066b66ea82be6679f7
Author: Kirk Lund <kl...@apache.org>
AuthorDate: Mon Mar 19 13:55:09 2018 -0700

    GEODE-4882: Add FlakyTest category to AnalyzeConnectorsSerializablesJUnitTest
    
    Test testSanctionedClassesExistAndDoDeserialize is failing intermittently:
    
    org.apache.geode.cache.CacheClosedException: Could not PDX serialize because the cache was closed
---
 .../geode/codeAnalysis/AnalyzeConnectorsSerializablesJUnitTest.java  | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/geode-connectors/src/test/java/org/apache/geode/codeAnalysis/AnalyzeConnectorsSerializablesJUnitTest.java b/geode-connectors/src/test/java/org/apache/geode/codeAnalysis/AnalyzeConnectorsSerializablesJUnitTest.java
index 9394280..82513e3 100644
--- a/geode-connectors/src/test/java/org/apache/geode/codeAnalysis/AnalyzeConnectorsSerializablesJUnitTest.java
+++ b/geode-connectors/src/test/java/org/apache/geode/codeAnalysis/AnalyzeConnectorsSerializablesJUnitTest.java
@@ -16,11 +16,10 @@ package org.apache.geode.codeAnalysis;
 
 import org.junit.experimental.categories.Category;
 
+import org.apache.geode.test.junit.categories.FlakyTest;
 import org.apache.geode.test.junit.categories.IntegrationTest;
-import org.apache.geode.test.junit.categories.LuceneTest;
 
-
-@Category({IntegrationTest.class})
+@Category({IntegrationTest.class, FlakyTest.class})
 public class AnalyzeConnectorsSerializablesJUnitTest extends AnalyzeSerializablesJUnitTest {
 
   @Override

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