Fix heartbeat comment not being its own event (#37389)

This commit is contained in:
Claire 2026-01-06 10:50:28 +01:00 committed by GitHub
parent 82fb2596c7
commit d9cd75400c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -918,7 +918,7 @@ const startServer = async () => {
res.write(':)\n');
const heartbeat = setInterval(() => res.write(':thump\n'), 15000);
const heartbeat = setInterval(() => res.write(':thump\n\n'), 15000);
req.on('close', () => {
req.log.info({ accountId: req.accountId }, `Ending stream`);