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:
parent
49bf51da38
commit
962fba7621
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue