Github user mattyb149 commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2487#discussion_r170084710
--- 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 --
Should this be DEFAULT_WAL_IMPLEMENTATION?
---