Fix logging of messages that are binary before closing their connection (#25361)

This commit is contained in:
Emelia Smith 2023-06-10 18:24:37 +02:00 committed by Claire
parent e78ee582f7
commit 23e7b4d28d
1 changed files with 1 additions and 1 deletions

View File

@ -1219,7 +1219,7 @@ const startWorker = async (workerId) => {
ws.on('message', (data, isBinary) => {
if (isBinary) {
log.debug('Received binary data, closing connection');
log.warn('socket', 'Received binary data, closing connection');
ws.close(1003, 'The mastodon streaming server does not support binary messages');
return;
}