mirror of
https://github.com/mastodon/mastodon.git
synced 2026-01-11 19:56:37 +00:00
Fix heartbeat comment not being its own event (#37389)
This commit is contained in:
parent
82fb2596c7
commit
d9cd75400c
1 changed files with 1 additions and 1 deletions
|
|
@ -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`);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue