You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by mt...@apache.org on 2020/05/25 14:25:26 UTC

[nifi] branch master updated: NIFI-7211 Added @Ignore with warning message to a test that randomly fails due to timing issues.

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

mthomsen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/master by this push:
     new 443f969  NIFI-7211 Added @Ignore with warning message to a test that randomly fails due to timing issues.
443f969 is described below

commit 443f969d3626ac2791f4095de7dc59de7a9733e7
Author: Mike Thomsen <mt...@apache.org>
AuthorDate: Mon May 25 09:25:40 2020 -0400

    NIFI-7211 Added @Ignore with warning message to a test that randomly fails due to timing issues.
    
    This closes #4296
---
 .../nifi/processors/stateful/analysis/AttributeRollingWindowIT.java    | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/nifi-nar-bundles/nifi-stateful-analysis-bundle/nifi-stateful-analysis-processors/src/test/java/org/apache/nifi/processors/stateful/analysis/AttributeRollingWindowIT.java b/nifi-nar-bundles/nifi-stateful-analysis-bundle/nifi-stateful-analysis-processors/src/test/java/org/apache/nifi/processors/stateful/analysis/AttributeRollingWindowIT.java
index 8a24956..b56e6e6 100644
--- a/nifi-nar-bundles/nifi-stateful-analysis-bundle/nifi-stateful-analysis-processors/src/test/java/org/apache/nifi/processors/stateful/analysis/AttributeRollingWindowIT.java
+++ b/nifi-nar-bundles/nifi-stateful-analysis-bundle/nifi-stateful-analysis-processors/src/test/java/org/apache/nifi/processors/stateful/analysis/AttributeRollingWindowIT.java
@@ -23,6 +23,7 @@ import org.apache.nifi.state.MockStateManager;
 import org.apache.nifi.util.MockFlowFile;
 import org.apache.nifi.util.TestRunner;
 import org.apache.nifi.util.TestRunners;
+import org.junit.Ignore;
 import org.junit.Test;
 
 import java.io.IOException;
@@ -192,7 +193,7 @@ public class AttributeRollingWindowIT {
 
     }
 
-
+    @Ignore("this test is too unstable in terms of timing on different size/types of testing envs")
     @Test
     public void testMicroBatching() throws InterruptedException {
         assumeFalse(isWindowsEnvironment());