From 4ff5ed756da87f0069f7eada2c89c1e53f84d1b4 Mon Sep 17 00:00:00 2001 From: Viktor Liu Date: Tue, 7 Jul 2026 16:35:55 +0200 Subject: [PATCH] Increase system info gathering timeout from 15s to 60s --- client/internal/engine.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/internal/engine.go b/client/internal/engine.go index a08bea31b..28c3a26eb 100644 --- a/client/internal/engine.go +++ b/client/internal/engine.go @@ -88,7 +88,7 @@ const ( // check gathering. The gathering runs uncancellable system calls (process scan, // exec, os.Stat); without this bound a single stuck call freezes handleSync, and // thus syncMsgMux, for as long as the call hangs (observed multi-minute freezes). - systemInfoTimeout = 15 * time.Second + systemInfoTimeout = 60 * time.Second ) var ErrResetConnection = fmt.Errorf("reset connection")