Github user markap14 commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2487#discussion_r170630297
--- Diff:
nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/controller/repository/WriteAheadFlowFileRepository.java
---
@@ -129,17 +138,22 @@ public WriteAheadFlowFileRepository() {
checkpointDelayMillis = 0l;
numPartitions = 0;
checkpointExecutor = null;
- flowFileRepositoryPath = null;
+ walImplementation = null;
--- End diff --
It doesn't really matter what it's set to - that constructor will only be
used for service loading and no method in the class will ever be called.
---