rkhachatryan commented on a change in pull request #15200:
URL: https://github.com/apache/flink/pull/15200#discussion_r642290406
##########
File path:
flink-runtime/src/main/java/org/apache/flink/runtime/state/StateBackendLoader.java
##########
@@ -395,8 +397,8 @@ private static StateBackend loadChangelogStateBackend(
Constructor<? extends DelegatingStateBackend> constructor =
Class.forName(CHANGELOG_STATE_BACKEND, false, classLoader)
.asSubclass(DelegatingStateBackend.class)
- .getConstructor(StateBackend.class);
- return constructor.newInstance(backend);
+ .getConstructor(StateBackend.class,
StateChangelogWriterFactory.class);
+ return constructor.newInstance(backend, new
InMemoryStateChangelogWriterFactory());
Review comment:
Removed this change (as per comment
[below](https://github.com/apache/flink/pull/15200#discussion_r640955392))
--
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]