From c4b1bcad1cab8c6550cabb49e2949e112c4e0727 Mon Sep 17 00:00:00 2001 From: anikeev-yadro Date: Thu, 10 Nov 2022 12:12:27 +0300 Subject: [PATCH] Add timeout between commands Signed-off-by: anikeev-yadro --- robot/resources/lib/python_keywords/node_management.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/robot/resources/lib/python_keywords/node_management.py b/robot/resources/lib/python_keywords/node_management.py index e71bf8f..fdfa85d 100644 --- a/robot/resources/lib/python_keywords/node_management.py +++ b/robot/resources/lib/python_keywords/node_management.py @@ -188,8 +188,9 @@ def include_node_to_network_map( ) -> None: node_set_status(hosting, node_to_include, status="online") - time.sleep(parse_time(MORPH_BLOCK_TIME)) + time.sleep(parse_time(MORPH_BLOCK_TIME) * 2) tick_epoch(shell=shell) + time.sleep(parse_time(MORPH_BLOCK_TIME) * 2) check_node_in_map(node_to_include, shell, alive_node)