fgerlits commented on a change in pull request #1254:
URL: https://github.com/apache/nifi-minifi-cpp/pull/1254#discussion_r799628316
##########
File path: docker/test/integration/minifi/validators/MultiFileOutputValidator.py
##########
@@ -56,7 +56,10 @@ def validate(self):
self.file_timestamps[full_path] = os.path.getmtime(full_path)
logging.info("New file added %s", full_path)
- if len(self.file_timestamps) == self.expected_file_count:
- return self.check_expected_content(full_dir)
+ if self.expected_file_count != 0 and len(self.file_timestamps) !=
self.expected_file_count:
Review comment:
Can you add this new behavior to the documentation string, please?
--
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]