This is an automated email from the ASF dual-hosted git repository.
akalash 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 6e95bfafa79 [FLINK-30844][runtime] Increased TASK_CANCELLATION_TIMEOUT
for testInterruptibleSharedLockInInvokeAndCancel
6e95bfafa79 is described below
commit 6e95bfafa79841bc63d751d276276f70600cccac
Author: Anton Kalashnikov <[email protected]>
AuthorDate: Wed Apr 5 14:06:35 2023 +0200
[FLINK-30844][runtime] Increased TASK_CANCELLATION_TIMEOUT for
testInterruptibleSharedLockInInvokeAndCancel
---
.../src/test/java/org/apache/flink/runtime/taskmanager/TaskTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/flink-runtime/src/test/java/org/apache/flink/runtime/taskmanager/TaskTest.java
b/flink-runtime/src/test/java/org/apache/flink/runtime/taskmanager/TaskTest.java
index 057d6f3dd49..74b612fac59 100644
---
a/flink-runtime/src/test/java/org/apache/flink/runtime/taskmanager/TaskTest.java
+++
b/flink-runtime/src/test/java/org/apache/flink/runtime/taskmanager/TaskTest.java
@@ -941,7 +941,7 @@ public class TaskTest extends TestLogger {
final Configuration config = new Configuration();
config.setLong(TaskManagerOptions.TASK_CANCELLATION_INTERVAL, 5);
- config.setLong(TaskManagerOptions.TASK_CANCELLATION_TIMEOUT, 50);
+ config.setLong(TaskManagerOptions.TASK_CANCELLATION_TIMEOUT, 1000);
final Task task =
createTaskBuilder()