From 2bc0c76c8f8e2926c5e0444072cf8308847f80da Mon Sep 17 00:00:00 2001 From: Arnaud Date: Wed, 8 Oct 2025 13:06:10 +0200 Subject: [PATCH] Add block retries config --- codex/codex.go | 1 + 1 file changed, 1 insertion(+) diff --git a/codex/codex.go b/codex/codex.go index b58d831..7601501 100644 --- a/codex/codex.go +++ b/codex/codex.go @@ -95,6 +95,7 @@ type CodexConfig struct { BlockTtl int `json:"block-ttl,omitempty"` BlockMaintenanceInterval int `json:"block-mi,omitempty"` BlockMaintenanceNumberOfBlocks int `json:"block-mn,omitempty"` + BlockRetries int `json:"block-retries,omitempty"` CacheSize int `json:"cache-size,omitempty"` LogFile string `json:"log-file,omitempty"` }