feat(core): enable retryFetchErrors by default

Transient "fetch failed" network errors are common in non-interactive
contexts; the retry infrastructure exists but was off by default.
This commit is contained in:
Bryan Morgan
2026-02-22 10:05:38 -05:00
parent a91bc60e18
commit dd16aa0602
2 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -302,7 +302,7 @@ const SETTINGS_SCHEMA = {
label: 'Retry Fetch Errors',
category: 'General',
requiresRestart: false,
default: false,
default: true,
description:
'Retry on "exception TypeError: fetch failed sending request" errors.',
showInDialog: false,