You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ma...@apache.org on 2022/03/15 07:08:02 UTC

[flink] branch release-1.15 updated: [FLINK-26500][runtime][test] Increases the deadline to wait for parallelism

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

mapohl pushed a commit to branch release-1.15
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/release-1.15 by this push:
     new 6d4d50d  [FLINK-26500][runtime][test] Increases the deadline to wait for parallelism
6d4d50d is described below

commit 6d4d50da7b46155d4ffdb58d4b61eb1742a98932
Author: Matthias Pohl <ma...@ververica.com>
AuthorDate: Mon Mar 14 12:16:41 2022 +0100

    [FLINK-26500][runtime][test] Increases the deadline to wait for parallelism
    
    The deadline of 10s wasn't sufficient enough for AzureCI runs.
---
 .../runtime/scheduler/adaptive/AdaptiveSchedulerClusterITCase.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flink-runtime/src/test/java/org/apache/flink/runtime/scheduler/adaptive/AdaptiveSchedulerClusterITCase.java b/flink-runtime/src/test/java/org/apache/flink/runtime/scheduler/adaptive/AdaptiveSchedulerClusterITCase.java
index 272b022..6973722 100644
--- a/flink-runtime/src/test/java/org/apache/flink/runtime/scheduler/adaptive/AdaptiveSchedulerClusterITCase.java
+++ b/flink-runtime/src/test/java/org/apache/flink/runtime/scheduler/adaptive/AdaptiveSchedulerClusterITCase.java
@@ -282,6 +282,6 @@ public class AdaptiveSchedulerClusterITCase extends TestLogger {
 
                     return executionJobVertex.getParallelism() == targetParallelism;
                 },
-                Deadline.fromNow(Duration.ofSeconds(10)));
+                Deadline.fromNow(Duration.ofMinutes(5)));
     }
 }