Github user StefanRRichter commented on a diff in the pull request:
https://github.com/apache/flink/pull/6006#discussion_r188002868
--- Diff:
flink-runtime/src/main/java/org/apache/flink/runtime/taskexecutor/TaskManagerServicesConfiguration.java
---
@@ -78,13 +78,13 @@
private final long timerServiceShutdownTimeout;
- private final LocalRecoveryConfig.LocalRecoveryMode localRecoveryMode;
+ private final boolean localRecovery;
--- End diff --
I would agree to `localRecoveryEnabled` because IIRC the `is` should not be
part of boolean field names, only of the accessor method name.
---