feat(config): disable runtime_fallback by default (opt-in)

This commit is contained in:
YeonGyu-Kim
2026-02-22 01:54:34 +09:00
parent 309869a79f
commit 976798d0e3
6 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ import type { RuntimeFallbackConfig } from "../../config"
* Default configuration values for runtime fallback
*/
export const DEFAULT_CONFIG: Required<RuntimeFallbackConfig> = {
enabled: true,
enabled: false,
retry_on_errors: [429, 500, 502, 503, 504],
max_fallback_attempts: 3,
cooldown_seconds: 60,