From 6569b00e6606e0aec65fa0f8115b228875dcc9ed Mon Sep 17 00:00:00 2001 From: pippellia-btc Date: Mon, 15 Sep 2025 18:27:45 +0200 Subject: [PATCH] increased fetcher timeout to avoid getting partial results --- 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 4a34442..97cd0db 100644 --- a/pkg/pipe/fetcher.go +++ b/pkg/pipe/fetcher.go @@ -104,7 +104,7 @@ func fetch(ctx context.Context, config FetcherConfig, pubkeys []string) ([]*nost return nil, nil } - ctx, cancel := context.WithTimeout(ctx, time.Second*15) + ctx, cancel := context.WithTimeout(ctx, 30*time.Second) defer cancel() pool := nostr.NewSimplePool(ctx)