From 16d3a9245591b8156f4ebdb3c19dc0cb31716c24 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Thu, 22 Jan 2026 19:41:42 -0500 Subject: [PATCH] chore: increase timeout for `bd version` check (#871) Signed-off-by: Rui Chen --- internal/cmd/beads_version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cmd/beads_version.go b/internal/cmd/beads_version.go index b604faa6..9c087d94 100644 --- a/internal/cmd/beads_version.go +++ b/internal/cmd/beads_version.go @@ -91,7 +91,7 @@ func (v beadsVersion) compare(other beadsVersion) int { var beadsVersionRe = regexp.MustCompile(`bd version (\d+\.\d+(?:\.\d+)?(?:-\w+)?)`) func getBeadsVersion() (string, error) { - ctx, cancel := context.WithTimeout(context.Background(), 2*time.Second) + ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second) defer cancel() cmd := exec.CommandContext(ctx, "bd", "version")