Github user tillrohrmann commented on a diff in the pull request:
https://github.com/apache/flink/pull/5774#discussion_r177739972
--- Diff:
flink-runtime/src/test/java/org/apache/flink/runtime/dispatcher/DispatcherTest.java
---
@@ -507,19 +539,21 @@ private TestingDispatcher(
jobManagerMetricGroup,
metricQueryServicePath,
archivedExecutionGraphStore,
- new
ExpectedJobIdJobManagerRunnerFactory(expectedJobId),
+ jobManagerRunnerFactory,
fatalErrorHandler,
null);
}
- @Override
- public CompletableFuture<Acknowledge> submitJob(final JobGraph
jobGraph, final Time timeout) {
- final CompletableFuture<Acknowledge> submitJobFuture =
super.submitJob(jobGraph, timeout);
-
- submitJobFuture.thenAccept(ignored ->
submitJobLatch.countDown());
- return submitJobFuture;
- }
+//
+// @Override
--- End diff --
Will remove it
---