Add logging of websocket send errors (#25280)
This commit is contained in:
parent
b19a695608
commit
215081240f
@ -828,7 +828,11 @@ const startServer = async () => {
|
||||
return;
|
||||
}
|
||||
|
||||
ws.send(JSON.stringify({ stream: streamName, event, payload }));
|
||||
ws.send(JSON.stringify({ stream: streamName, event, payload }), (err) => {
|
||||
if (err) {
|
||||
log.error(req.requestId, `Failed to send to websocket: ${err}`);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user