Github user tillrohrmann commented on a diff in the pull request:
https://github.com/apache/flink/pull/6006#discussion_r188000256
--- Diff:
flink-runtime/src/main/java/org/apache/flink/runtime/taskexecutor/TaskManagerServicesConfiguration.java
---
@@ -128,8 +128,8 @@ public InetAddress getTaskManagerAddress() {
return localRecoveryStateRootDirectories;
}
- public LocalRecoveryConfig.LocalRecoveryMode getLocalRecoveryMode() {
- return localRecoveryMode;
+ public boolean isLocalRecovery() {
--- End diff --
Maybe we could rename it to `isLocalRecoveryEnabled`
---