Update GitHub Actions workflow for Docker image

This commit is contained in:
decolua
2026-04-13 10:30:33 +07:00
parent 22e0592a58
commit ee1271b6fd
2 changed files with 2 additions and 21 deletions
-2
View File
@@ -46,7 +46,6 @@ export async function GET() {
};
await state.send();
console.log(`[SSE] Client connected | listeners=${statsEmitter.listenerCount("update") + 1}`);
statsEmitter.on("update", state.send);
statsEmitter.on("pending", state.sendPending);
@@ -67,7 +66,6 @@ export async function GET() {
statsEmitter.off("update", state.send);
statsEmitter.off("pending", state.sendPending);
clearInterval(state.keepalive);
console.log("[SSE] Client disconnected");
},
});