You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@nifi.apache.org by GitBox <gi...@apache.org> on 2021/12/11 15:23:41 UTC

[GitHub] [nifi-minifi-cpp] szaszm commented on a change in pull request #1216: MINIFICPP-1290 Create test coverage for OPC processors

szaszm commented on a change in pull request #1216:
URL: https://github.com/apache/nifi-minifi-cpp/pull/1216#discussion_r767164549



##########
File path: docker/test/integration/minifi/core/OPCUAServerContainer.py
##########
@@ -0,0 +1,24 @@
+import logging
+from .Container import Container
+
+
+class OPCUAServerContainer(Container):
+    def __init__(self, name, vols, network, image_store, command=None):
+        super().__init__(name, 'opcua-server', vols, network, image_store, command)
+
+    def get_startup_finished_log_entry(self):
+        return "TCP network layer listening on"
+
+    def deploy(self):
+        if not self.set_deployed():
+            return
+
+        logging.info('Creating and running OPC UA server docker container...')
+        self.client.containers.run(
+            "lordgamez/open62541",

Review comment:
       Is there a problem with the [official image](https://hub.docker.com/r/open62541/open62541)?




-- 
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: issues-unsubscribe@nifi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org