chore(tlon): restore ack threshold to 20

This commit is contained in:
Hunter Miller
2026-02-19 17:20:11 -06:00
committed by Josh Lehman
parent 85cb714407
commit 9e10ae3772

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 = 5; // Lowered for testing
private readonly ackThreshold = 20;
constructor(url: string, cookie: string, options: UrbitSseOptions = {}) {
const ctx = getUrbitContext(url, options.ship);