fgerlits commented on a change in pull request #1257:
URL: https://github.com/apache/nifi-minifi-cpp/pull/1257#discussion_r802894485
##########
File path: extensions/standard-processors/processors/TailFile.cpp
##########
@@ -667,11 +692,14 @@ std::vector<TailState>
TailFile::sortAndSkipMainFilePrefix(const TailState &stat
return matched_files;
}
-void TailFile::onTrigger(const std::shared_ptr<core::ProcessContext> &, const
std::shared_ptr<core::ProcessSession> &session) {
+void TailFile::onTrigger(const std::shared_ptr<core::ProcessContext>& context,
const std::shared_ptr<core::ProcessSession>& session) {
+ gsl_Expects(context);
+ gsl_Expects(session);
Review comment:
done in
https://github.com/apache/nifi-minifi-cpp/pull/1257/commits/8e69410a5ddf445c2535d45154303de8c4e6e3f1
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]