From 7d8907984d3516beb95e75d9b5511f5e3c8fbf63 Mon Sep 17 00:00:00 2001 From: pippellia-btc Date: Fri, 19 Sep 2025 15:55:39 +0200 Subject: [PATCH] FetcherConfig.Validate: corrected <= to just < --- pkg/pipe/fetcher.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/pipe/fetcher.go b/pkg/pipe/fetcher.go index 15a055b..4c7a73f 100644 --- a/pkg/pipe/fetcher.go +++ b/pkg/pipe/fetcher.go @@ -32,7 +32,7 @@ func (c FetcherConfig) Validate() error { return errors.New("kind list cannot be empty") } - if c.Batch <= 1 { + if c.Batch < 1 { return errors.New("batch value must be positive") }