aminadinari19 commented on a change in pull request #1141:
URL: https://github.com/apache/nifi-minifi-cpp/pull/1141#discussion_r685687146



##########
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:
       Thank-you for pointing it out. Fixed it :)




-- 
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]


Reply via email to