From bea243ae04f9688f26036590a1c2fba27ca04b48 Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Wed, 10 Jun 2020 10:30:48 +0300 Subject: [PATCH] Attempt to fix the CI finalization test Since I'm not able to reproduce the finalization failure locally and it does happen only sporadically, one possible explanation is that the introduction of keystores lead to a slower initialization of the beacon nodes which somehow interferes with their behavior during the initial slots. If increasing the start-up delay fixes the problems, the hypothesis will be confirmed. --- scripts/launch_local_testnet.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/launch_local_testnet.sh b/scripts/launch_local_testnet.sh index d2f90983a..8ef5a1908 100755 --- a/scripts/launch_local_testnet.sh +++ b/scripts/launch_local_testnet.sh @@ -153,7 +153,7 @@ BOOTSTRAP_IP="127.0.0.1" --output-bootstrap-file="${NETWORK_DIR}/bootstrap_nodes.txt" \ --bootstrap-address=${BOOTSTRAP_IP} \ --bootstrap-port=${BASE_PORT} \ - --genesis-offset=30 # Delay in seconds + --genesis-offset=60 # Delay in seconds ./scripts/make_prometheus_config.sh \ --nodes ${NUM_NODES} \