chore(tlon): lower ack threshold to 5 for testing

This commit is contained in:
Hunter Miller
2026-02-19 13:25:17 -06:00
committed by Josh Lehman
parent 2525498fea
commit c629b27d97

View File

@@ -57,7 +57,7 @@ export class UrbitSSEClient {
// Event ack tracking - must ack every ~50 events to keep channel healthy
private lastHeardEventId = -1;
private lastAcknowledgedEventId = -1;
private readonly ackThreshold = 20;
private readonly ackThreshold = 5; // Lowered for testing
constructor(url: string, cookie: string, options: UrbitSseOptions = {}) {
const ctx = getUrbitContext(url, options.ship);