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

[flink] branch release-1.15 updated: [FLINK-28878][tests] Increase slot request timeout of PipelinedRegionSchedulingITCase

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

zhuzh 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 ded03b750f4 [FLINK-28878][tests] Increase slot request timeout of PipelinedRegionSchedulingITCase
ded03b750f4 is described below

commit ded03b750f46d8636d6744d4e094943d04f787dd
Author: Zhu Zhu <re...@gmail.com>
AuthorDate: Fri Aug 12 12:12:33 2022 +0800

    [FLINK-28878][tests] Increase slot request timeout of PipelinedRegionSchedulingITCase
    
    This helps to make the tests more stable.
    
    This closes #20559.
---
 .../apache/flink/test/scheduling/PipelinedRegionSchedulingITCase.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flink-tests/src/test/java/org/apache/flink/test/scheduling/PipelinedRegionSchedulingITCase.java b/flink-tests/src/test/java/org/apache/flink/test/scheduling/PipelinedRegionSchedulingITCase.java
index 2df030df772..ed76f64862d 100644
--- a/flink-tests/src/test/java/org/apache/flink/test/scheduling/PipelinedRegionSchedulingITCase.java
+++ b/flink-tests/src/test/java/org/apache/flink/test/scheduling/PipelinedRegionSchedulingITCase.java
@@ -104,7 +104,7 @@ public class PipelinedRegionSchedulingITCase extends TestLogger {
 
     private JobResult executeSchedulingTest(
             JobGraph jobGraph, int numSlots, Configuration configuration) throws Exception {
-        configuration.setLong(JobManagerOptions.SLOT_REQUEST_TIMEOUT, 5000L);
+        configuration.setLong(JobManagerOptions.SLOT_REQUEST_TIMEOUT, 30000L);
 
         final MiniClusterConfiguration miniClusterConfiguration =
                 new MiniClusterConfiguration.Builder()