fix: uncomment retry for start

This commit is contained in:
Roman 2025-01-13 19:35:55 +08:00
parent ac2f1fc8a7
commit 0ec8ce05e1
No known key found for this signature in database
GPG Key ID: B8FE070B54E11B75

View File

@ -39,7 +39,7 @@ class NomosNode:
logger.debug(f"NomosNode instance initialized with log path {self._log_path}")
# @retry(stop=stop_after_delay(60), wait=wait_fixed(0.1), reraise=True)
@retry(stop=stop_after_delay(60), wait=wait_fixed(0.1), reraise=True)
def start(self, wait_for_node_sec=120, **kwargs):
logger.debug("Starting Node...")
self._docker_manager.create_network()