Github user tillrohrmann commented on a diff in the pull request:
https://github.com/apache/flink/pull/5239#discussion_r168468980
--- Diff:
flink-runtime/src/main/java/org/apache/flink/runtime/state/filesystem/FsStateBackend.java
---
@@ -525,19 +526,17 @@ public String toString() {
/**
* This class encapsulates the configuration for local recovery of this
backend.
*/
- public static final class LocalRecoveryConfig implements Serializable {
+ public static final class LocalRecoveryConfig extends
LocalRecoveryConfigBase {
- private static final long serialVersionUID = 1L;
--- End diff --
Not sure whether we can remove the `serialVersionUID` here.
---