Github user StephanEwen commented on a diff in the pull request: https://github.com/apache/flink/pull/5427#discussion_r184482881 --- Diff: flink-runtime/src/main/scala/org/apache/flink/runtime/jobmanager/JobManager.scala --- @@ -1358,6 +1358,10 @@ class JobManager( throw new SuppressRestartsException(e) } } + else { --- End diff -- If we did not have the unconditional initialization logic, we should also be able to drop this part. That would also make this work with the flip-6 code.
---