fix(desktop): shorten initial account probe delay

This commit is contained in:
2026-05-06 18:21:38 +08:00
parent bb7221d674
commit 930f095c64
@@ -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