diff --git a/apps/desktop-client/src/main/account-health.ts b/apps/desktop-client/src/main/account-health.ts index 8673027..1df68d2 100644 --- a/apps/desktop-client/src/main/account-health.ts +++ b/apps/desktop-client/src/main/account-health.ts @@ -17,10 +17,10 @@ import { getPlatformAdapter, type PlatformFailureInput } from './platform-auth-a import { emitRuntimeInvalidated } from './runtime-events' import { getPersistedPartition, getSessionHandle } from './session-registry' -const PROBE_TICK_MS = 10_000 +const PROBE_TICK_MS = 1_000 const STALE_AFTER_MS = 45 * 60_000 -const INITIAL_PROBE_MIN_MS = 5_000 -const INITIAL_PROBE_MAX_MS = 3 * 60_000 +const INITIAL_PROBE_MIN_MS = 1_000 +const INITIAL_PROBE_MAX_MS = 10_000 const REGULAR_PROBE_MIN_MS = 30 * 60_000 const REGULAR_PROBE_MAX_MS = STALE_AFTER_MS const CONFIRM_BACKOFF_STEPS_MS = [30_000, 120_000] as const