From 5ac972a74f5030d29eb0e7708c8e1de746489513 Mon Sep 17 00:00:00 2001 From: Roman Date: Fri, 10 Jan 2025 14:58:00 +0800 Subject: [PATCH] test: remove the node up check - bump startup timeout to 30 sec --- src/node/nomos_node.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node/nomos_node.py b/src/node/nomos_node.py index 04b09db..205c8fd 100644 --- a/src/node/nomos_node.py +++ b/src/node/nomos_node.py @@ -82,7 +82,7 @@ class NomosNode: logger.debug(f"Started container from image {self._image_name}. " f"REST: {getattr(self, '_tcp_port', 'N/A')}") # try: - self.ensure_ready(timeout_duration=wait_for_node_sec) + # self.ensure_ready(timeout_duration=wait_for_node_sec) # except Exception as ex: # logger.error(f"REST service did not become ready in time: {ex}") # raise