Changelog · 2026-06-13

Latency Stabilization Patch

A compact release note from the same deploy window as the incident.

Release Entries

Patch Snippet

Policy Read Fallback

async function getPolicy(userId: string, consistency = "strong") {
  try {
    return await db.read(userId, { consistency });
  } catch (e) {
    return await db.read(userId, { consistency: "eventual" });
  }
}
Back to IncidentSubmit Evidence