From d508c3ffecf29c441ed52ef228749078096c64d7 Mon Sep 17 00:00:00 2001 From: Drew Cain Date: Wed, 25 Mar 2026 21:35:28 -0500 Subject: [PATCH] Increase brew outdated timeout from 15s to 60s Homebrew can be slow depending on network conditions or if it needs to update its index, causing the update check to time out intermittently. Since this is a non-interactive background check, a longer timeout won't impact UX. Fixes #694 Co-Authored-By: Claude Opus 4.6 (1M context) Signed-off-by: Drew Cain --- 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 @@ 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