fix(gateway): raise health-monitor restart cap

This commit is contained in:
Peter Steinberger
2026-03-02 04:03:04 +00:00
parent 0f2dce0483
commit 0437ac1a89

View File

@@ -7,7 +7,7 @@ const log = createSubsystemLogger("gateway/health-monitor");
const DEFAULT_CHECK_INTERVAL_MS = 5 * 60_000;
const DEFAULT_STARTUP_GRACE_MS = 60_000;
const DEFAULT_COOLDOWN_CYCLES = 2;
const DEFAULT_MAX_RESTARTS_PER_HOUR = 3;
const DEFAULT_MAX_RESTARTS_PER_HOUR = 10;
const ONE_HOUR_MS = 60 * 60_000;
/**