From aaef09b6705615e37628508df4fdacc08e5b4d8c Mon Sep 17 00:00:00 2001 From: Nathan Wallace Date: Thu, 13 Nov 2025 09:14:46 +0800 Subject: [PATCH] Fix #4866: Increase snapshot row streaming timeout from 5s to 30s (#4867) --- pkg/snapshot/snapshot.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/snapshot/snapshot.go b/pkg/snapshot/snapshot.go index 811bff50b..53cc0a749 100644 --- a/pkg/snapshot/snapshot.go +++ b/pkg/snapshot/snapshot.go @@ -211,8 +211,8 @@ func SnapshotToQueryResult[T queryresult.TimingContainer](snap *steampipeconfig. case <-done: // Cancelled, stop sending rows return - case <-time.After(5 * time.Second): - // Timeout - consumer likely stopped reading, exit to prevent leak + case <-time.After(30 * time.Second): + // Timeout after 30s - consumer likely stopped reading, exit to prevent leak return } }