Skip to content

Commit 3934c4e

Browse files
engalarclaude
andcommitted
fix(daemon): increase idle timeout to 30 minutes
5-minute idle timeout caused frequent cold restarts during interactive development sessions, negating the per-MPR daemon warmup benefit. 30 minutes matches typical session lengths and keeps daemon hot across breaks (test runs, code editing, documentation reading). Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
1 parent 84b17a8 commit 3934c4e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cmd/mxcli-launcher/mpr_daemon.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212
)
1313

1414
const (
15-
mprDaemonIdleTimeout = 5 * time.Minute
16-
sharedDaemonIdleTimeout = 5 * time.Minute
15+
mprDaemonIdleTimeout = 30 * time.Minute
16+
sharedDaemonIdleTimeout = 30 * time.Minute
1717
mprDaemonStartTimeout = 30 * time.Second
1818
)
1919

0 commit comments

Comments
 (0)