Bump up startup waits slightly

Ensures there's more time for daemons (specifically Zookeeper) to start
up and synchronize between nodes.
This commit is contained in:
Joshua Boniface 2024-10-15 11:10:23 -04:00
parent 49bf51da38
commit 962fba7621
2 changed files with 4 additions and 4 deletions

View File

@ -102,5 +102,5 @@ def start_system_services(logger, config):
start_workerd(logger, config)
start_healthd(logger, config)
logger.out("Waiting 5 seconds for daemons to start", state="s")
sleep(5)
logger.out("Waiting 10 seconds for daemons to start", state="s")
sleep(10)

View File

@ -189,5 +189,5 @@ def setup_node(logger, config, zkhandler):
]
)
logger.out("Waiting 3 seconds for Zookeeper to synchronize", state="s")
time.sleep(3)
logger.out("Waiting 5 seconds for Zookeeper to synchronize", state="s")
time.sleep(5)