Github user achristianson commented on a diff in the pull request:
https://github.com/apache/nifi-minifi-cpp/pull/333#discussion_r189911362
--- Diff: libminifi/src/processors/PutFile.cpp ---
@@ -51,7 +51,9 @@ core::Property PutFile::CreateDirs(
"Create Missing Directories",
"If true, then missing destination directories will be created. "
"If false, flowfiles are penalized and sent to failure.",
- "true");
+ "true",
+ true,
--- End diff --
It's required per documentation
https://github.com/apache/nifi-minifi-cpp/blob/master/PROCESSORS.md#putfile.
There are other properties out of sync with documentation/spec, which will be
reconciled in future commits.
---