Changelog · 2026-06-13
Latency Stabilization Patch
A compact release note from the same deploy window as the incident.
Release Entries
- Reduced p99 read latency for memory-agent policy checks.
- Temporary fallback added when strong reads exceed 80ms.
- Fallback uses eventual consistency to avoid blocking user-facing agent actions.
- Classifier confidence export now includes downstream adjudicator metadata.
- Ticket importer changed from replace mode to append mode for low-priority support notes.
- TODO: add audit marker when consistency mode changes during retry.
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" });
}
}