From fc520949935fe8108764e047c7958376380e81c2 Mon Sep 17 00:00:00 2001 From: Sam Calder-Mason Date: Wed, 9 Oct 2024 14:02:03 +1000 Subject: [PATCH] fix: Increase timeout to 10 minutes for beacon node --- pkg/sentry/ethereum/beacon.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/sentry/ethereum/beacon.go b/pkg/sentry/ethereum/beacon.go index ae4cd70d..3f0b208c 100644 --- a/pkg/sentry/ethereum/beacon.go +++ b/pkg/sentry/ethereum/beacon.go @@ -120,7 +120,7 @@ func (b *BeaconNode) Start(ctx context.Context) error { return ctx.Err() case <-healthyFirstTime: // Beacon node is healthy, continue with normal operation - case <-time.After(5 * time.Minute): + case <-time.After(10 * time.Minute): return errors.New("upstream beacon node is not healthy. check your configuration.") }