azagrebin commented on a change in pull request #14301:
URL: https://github.com/apache/flink/pull/14301#discussion_r537330059
##########
File path:
flink-runtime/src/main/java/org/apache/flink/runtime/minicluster/MiniCluster.java
##########
@@ -938,6 +962,13 @@ private void terminateMiniClusterServices() throws
Exception {
}
}
+ @Nullable
+ private static BiFunction<Configuration, Executor,
HighAvailabilityServices> createHighAvailabilityServicesFactory(
+ boolean enableEmbeddedHaLeadershipControl) {
+ return enableEmbeddedHaLeadershipControl ?
+ (conf, executor) -> new
EmbeddedHaServicesWithLeadershipControl(executor) : null;
+ }
Review comment:
leftover
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]