Github user phrocker commented on a diff in the pull request:
https://github.com/apache/nifi-minifi-cpp/pull/174#discussion_r148851261
--- Diff: libminifi/src/processors/PutFile.cpp ---
@@ -127,7 +131,33 @@ void PutFile::onTrigger(core::ProcessContext *context,
core::ProcessSession *ses
}
}
-bool PutFile::putFile(core::ProcessSession *session,
std::shared_ptr<FlowFileRecord> flowFile, const std::string &tmpFile, const
std::string &destFile) {
+std::string PutFile::tmpWritePath(const std::string &filename) const {
--- End diff --
thanks for breaking this out. much cleaner.
---