Skip to content

Commit 5e71c03

Browse files
ThanhDodeurOdooalexkuhn
authored andcommitted
[FIX] prevent traceback when using the SIGIO signal
Before this commit, using the SIGIO posix signal to get server stats would generate a traceback and was preventing the logging of server stats. This was caused by a typo in the name of one property access during destructuring. This traceback is not critical and would not lead to server failure.
1 parent 793648b commit 5e71c03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const processHandlers = {
4444
(async () => {
4545
const {
4646
sessionsStats: {
47-
incomingBitrate: { audio, camera, screen, total },
47+
incomingBitRate: { audio, camera, screen, total },
4848
count,
4949
},
5050
} = await channel.getStats();

0 commit comments

Comments
 (0)