You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tr...@apache.org on 2021/12/28 08:52:12 UTC

[flink] branch master updated: [FLINK-25426] Disable UnalignedCheckpointRescaleITCase because it fails regularly

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

trohrmann 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 276570e  [FLINK-25426] Disable UnalignedCheckpointRescaleITCase because it fails regularly
276570e is described below

commit 276570e223a9b4ddb3939101b0fe3ff995ac46c5
Author: Till Rohrmann <tr...@apache.org>
AuthorDate: Tue Dec 28 09:51:07 2021 +0100

    [FLINK-25426] Disable UnalignedCheckpointRescaleITCase because it fails regularly
---
 .../flink/test/checkpointing/UnalignedCheckpointRescaleITCase.java      | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/flink-tests/src/test/java/org/apache/flink/test/checkpointing/UnalignedCheckpointRescaleITCase.java b/flink-tests/src/test/java/org/apache/flink/test/checkpointing/UnalignedCheckpointRescaleITCase.java
index fd89c38..72808de 100644
--- a/flink-tests/src/test/java/org/apache/flink/test/checkpointing/UnalignedCheckpointRescaleITCase.java
+++ b/flink-tests/src/test/java/org/apache/flink/test/checkpointing/UnalignedCheckpointRescaleITCase.java
@@ -47,6 +47,7 @@ import org.apache.flink.streaming.api.functions.co.KeyedCoProcessFunction;
 import org.apache.flink.util.Collector;
 
 import org.apache.commons.lang3.ArrayUtils;
+import org.junit.Ignore;
 import org.junit.Test;
 import org.junit.runner.RunWith;
 import org.junit.runners.Parameterized;
@@ -62,6 +63,7 @@ import static org.hamcrest.Matchers.equalTo;
 
 /** Integration test for performing rescale of unaligned checkpoint. */
 @RunWith(Parameterized.class)
+@Ignore("Test fails regularly on AZP. See FLINK-25426.")
 public class UnalignedCheckpointRescaleITCase extends UnalignedCheckpointTestBase {
     public static final int NUM_GROUPS = 100;
     private final Topology topology;