From 5cbe1e58061b2e4f52940ca19476f2bfbaca5c69 Mon Sep 17 00:00:00 2001 From: "claude[bot]" <41898282+claude[bot]@users.noreply.github.com> Date: Thu, 26 Mar 2026 02:35:23 +0000 Subject: [PATCH] fix: increase BREW_OUTDATED_TIMEOUT_SECONDS from 15 to 60 seconds Homebrew can be slow under poor network conditions or when updating its index, causing intermittent timeout failures on the background outdated check. Since this is a non-interactive background operation, the longer timeout does not impact UX. Fixes #694 Co-authored-by: Drew Cain Signed-off-by: claude[bot] <41898282+claude[bot]@users.noreply.github.com> --- src/basic_memory/cli/auto_update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/basic_memory/cli/auto_update.py b/src/basic_memory/cli/auto_update.py index 5a0fce3c..862602ec 100644 --- a/src/basic_memory/cli/auto_update.py +++ b/src/basic_memory/cli/auto_update.py @@ -22,7 +22,7 @@ PACKAGE_NAME = "basic-memory" PYPI_JSON_URL = "https://pypi.org/pypi/basic-memory/json" PYPI_TIMEOUT_SECONDS = 5 -BREW_OUTDATED_TIMEOUT_SECONDS = 15 +BREW_OUTDATED_TIMEOUT_SECONDS = 60 UV_UPGRADE_TIMEOUT_SECONDS = 180 BREW_UPGRADE_TIMEOUT_SECONDS = 600