You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by rm...@apache.org on 2021/05/10 13:10:33 UTC

[flink] branch master updated: [hotfix] Disable broken savepoint tests tracked in FLINK-22067

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 464e0d0  [hotfix] Disable broken savepoint tests tracked in FLINK-22067
464e0d0 is described below

commit 464e0d0997762e69be606f8afd7c796d97d24072
Author: Robert Metzger <rm...@apache.org>
AuthorDate: Mon May 10 10:54:07 2021 +0200

    [hotfix] Disable broken savepoint tests tracked in FLINK-22067
---
 .../test/java/org/apache/flink/state/api/utils/SavepointTestBase.java  | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/flink-libraries/flink-state-processing-api/src/test/java/org/apache/flink/state/api/utils/SavepointTestBase.java b/flink-libraries/flink-state-processing-api/src/test/java/org/apache/flink/state/api/utils/SavepointTestBase.java
index 30291a2..64808ec 100644
--- a/flink-libraries/flink-state-processing-api/src/test/java/org/apache/flink/state/api/utils/SavepointTestBase.java
+++ b/flink-libraries/flink-state-processing-api/src/test/java/org/apache/flink/state/api/utils/SavepointTestBase.java
@@ -30,6 +30,8 @@ import org.apache.flink.streaming.api.functions.source.SourceFunction;
 import org.apache.flink.test.util.AbstractTestBase;
 import org.apache.flink.util.AbstractID;
 
+import org.junit.Ignore;
+
 import java.io.IOException;
 import java.util.Arrays;
 import java.util.Collection;
@@ -38,6 +40,7 @@ import java.util.concurrent.TimeUnit;
 import java.util.function.Function;
 
 /** A test base that includes utilities for taking a savepoint. */
+@Ignore
 public abstract class SavepointTestBase extends AbstractTestBase {
 
     public <T extends WaitingFunction> String takeSavepoint(