From cd11d03aa44c5991d4b91ecab6f55df1988c0349 Mon Sep 17 00:00:00 2001 From: Jordan Schalm Date: Wed, 4 Sep 2024 16:35:43 -0700 Subject: [PATCH] set max retry interval for en requester engine to 10s --- cmd/execution_builder.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/execution_builder.go b/cmd/execution_builder.go index 86b74a8be6f..3e12a84ffdd 100644 --- a/cmd/execution_builder.go +++ b/cmd/execution_builder.go @@ -1048,6 +1048,7 @@ func (exeNode *ExecutionNode) LoadIngestionEngine( // consistency of collection can be checked by checking hash, and hash comes from trusted source (blocks from consensus follower) // hence we not need to check origin requester.WithValidateStaking(false), + requester.WithRetryMaximum(10*time.Second), ) if err != nil {