From aef12c7ed2708b0490a80b26396b0aa85b164a63 Mon Sep 17 00:00:00 2001 From: Franco Barpp Gomes Date: Thu, 23 May 2024 08:02:09 -0300 Subject: [PATCH] feat: Decrease default header timeout to 30 seconds --- core/safeclient/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/safeclient/client.go b/core/safeclient/client.go index 0a325005..bf6d4c8c 100644 --- a/core/safeclient/client.go +++ b/core/safeclient/client.go @@ -18,7 +18,7 @@ const ( BLOCK_CHUNK_SIZE = 2000 BLOCK_MAX_RANGE = 10000 LOG_RESUB_INTERVAL = 5 * time.Minute - HEADER_TIMEOUT = 1 * time.Minute + HEADER_TIMEOUT = 30 * time.Second ) type SafeClient interface {