Compare commits

...

1 Commits

Author SHA1 Message Date
claude[bot] 5cbe1e5806 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 <groksrc@users.noreply.github.com>
Signed-off-by: claude[bot] <41898282+claude[bot]@users.noreply.github.com>
2026-03-26 02:35:23 +00:00
+1 -1
View File
@@ -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