This is an automated email from the ASF dual-hosted git repository. trohrmann pushed a commit to branch release-1.13 in repository https://gitbox.apache.org/repos/asf/flink.git
commit 139e80ccbeac38799fa86c69d63901773f445d27 Author: Matthias Pohl <[email protected]> AuthorDate: Fri Apr 16 04:52:39 2021 +0200 [hotfix][test] Cleans up unused local variable --- .../java/org/apache/flink/runtime/scheduler/DefaultSchedulerTest.java | 1 - 1 file changed, 1 deletion(-) diff --git a/flink-runtime/src/test/java/org/apache/flink/runtime/scheduler/DefaultSchedulerTest.java b/flink-runtime/src/test/java/org/apache/flink/runtime/scheduler/DefaultSchedulerTest.java index c3863ca..8f8c102 100644 --- a/flink-runtime/src/test/java/org/apache/flink/runtime/scheduler/DefaultSchedulerTest.java +++ b/flink-runtime/src/test/java/org/apache/flink/runtime/scheduler/DefaultSchedulerTest.java @@ -1049,7 +1049,6 @@ public class DefaultSchedulerTest extends TestLogger { .getAttemptId(); final Exception expectedException = new Exception("Expected exception"); - final long start = System.currentTimeMillis(); scheduler.handleGlobalFailure(expectedException); // we have to cancel the task and trigger the restart to have the exception history
