adamdebreceni commented on a change in pull request #1141:
URL: https://github.com/apache/nifi-minifi-cpp/pull/1141#discussion_r684981591
##########
File path: docker/test/integration/MiNiFi_integration_test_driver.py
##########
@@ -272,3 +272,11 @@ def wait_for_kafka_consumer_to_be_registered(self,
cluster_name):
def check_query_results(self, cluster_name, query, number_of_rows,
timeout_seconds):
cluster = self.acquire_cluster(cluster_name)
assert cluster.check_query_results(query, number_of_rows,
timeout_seconds)
+
+ def check_minifi_log_contents(self, line):
+ line_found = False
+ for cluster in self.clusters.values():
+ if cluster.get_engine() == "minifi-cpp":
+ line_found = cluster.wait_for_app_logs(line, 60)
+ assert line_found
+
Review comment:
one of the builds fails as this contains an empty line at the end of file
--
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]