lordgamez commented on a change in pull request #1216:
URL: https://github.com/apache/nifi-minifi-cpp/pull/1216#discussion_r767170280
##########
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:
There is a more detailed note about the issue in the description of the
linked PR, but due to its size it would be problematic to use it in the CI. The
change I proposed is already merged in the repository and will be available in
the 1.3 release in the official dockerhub repository. It's currently in 1.3-RC1
phase at the moment so it should be available soon. We can replace it when we
upgrade to that version.
--
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]