mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-10 01:25:15 +00:00
Fix logging of messages that are binary before closing their connection (#25361)
This commit is contained in:
parent
6f819c7071
commit
e4bff6cd76
|
@ -1090,7 +1090,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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue