chore: fix lint after logging tweaks

This commit is contained in:
Peter Steinberger
2025-12-26 09:08:37 +00:00
parent 917cb8fa67
commit d6f07c9f91
5 changed files with 39 additions and 30 deletions

View File

@@ -58,7 +58,10 @@ export function setHeartbeatWakeHandler(next: HeartbeatWakeHandler | null) {
}
}
export function requestHeartbeatNow(opts?: { reason?: string; coalesceMs?: number }) {
export function requestHeartbeatNow(opts?: {
reason?: string;
coalesceMs?: number;
}) {
pendingReason = opts?.reason ?? pendingReason ?? "requested";
schedule(opts?.coalesceMs ?? DEFAULT_COALESCE_MS);
}