Skip to content

Commit

Permalink
Fix node launch process in test framework
Browse files Browse the repository at this point in the history
  • Loading branch information
bruno-valante committed Dec 26, 2024
1 parent 3024771 commit f4d92a0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_framework/test_framework.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,10 +215,12 @@ def __setup_zgs_node(self):
if i > 0:
time.sleep(1)
node.start()
node.wait_for_rpc_connection()

self.log.info("Wait the zgs_node launch for %d seconds", self.launch_wait_seconds)
time.sleep(self.launch_wait_seconds)

for node in self.nodes:
node.wait_for_rpc_connection()

def add_arguments(self, parser: argparse.ArgumentParser):
parser.add_argument(
Expand Down

0 comments on commit f4d92a0

Please sign in to comment.