HuangZhenQiu commented on code in PR #14678:
URL: https://github.com/apache/flink/pull/14678#discussion_r866515602
##########
flink-runtime/src/main/java/org/apache/flink/runtime/jobmaster/JobMaster.java:
##########
@@ -333,10 +340,15 @@ public void onUnknownDeploymentsOf(
}
private SchedulerNG createScheduler(
+ Configuration configuration,
ExecutionDeploymentTracker executionDeploymentTracker,
JobManagerJobMetricGroup jobManagerJobMetricGroup,
JobStatusListener jobStatusListener)
throws Exception {
+
+ List<FailureListener> failureListeners =
+ FailureListenerUtils.getFailureListerners(configuration,
jobManagerJobMetricGroup);
Review Comment:
Resolved
##########
flink-runtime/src/main/java/org/apache/flink/runtime/scheduler/DefaultScheduler.java:
##########
@@ -124,7 +125,8 @@
final ExecutionDeploymentTracker executionDeploymentTracker,
long initializationTimestamp,
final ComponentMainThreadExecutor mainThreadExecutor,
- final JobStatusListener jobStatusListener)
+ final JobStatusListener jobStatusListener,
+ final List<FailureListener> failureListeners)
Review Comment:
Updated
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]