Skip to content

Commit

Permalink
fix: Increase timeout to 10 minutes for beacon node
Browse files Browse the repository at this point in the history
  • Loading branch information
samcm committed Oct 9, 2024
1 parent 33e4f47 commit fc52094
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/sentry/ethereum/beacon.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.")
}

Expand Down

0 comments on commit fc52094

Please sign in to comment.