docker-jitsi-meet icon indicating copy to clipboard operation
docker-jitsi-meet copied to clipboard

"Invalid message received" in JVB since v7001

Open normen opened this issue 2 years ago • 3 comments

Since updating to v7001 I am getting a lot of these messages:

13:13:50 7ad0f164649e[21430]: JVB 2022-03-13 12:13:50.684 WARNING: [42] [confId=ab704a09e87d69db epId=9705dce6 gid=85935 stats_id=Floyd-dQD [email protected]] AbstractEndpointMessageTransport.onMessage#67: Invalid message received (Parameter specified as non-null is null: method org.jitsi.videobridge.message.EndpointStats.put, parameter value (through reference chain: org.jitsi.videobridge.message.EndpointStats["connectionQuality"]): {"colibriClass":"EndpointStats","bitrate":{"upload":838,"download":846,"audio":{"upload":14,"download":0},"video":{"upload":126,"download":846}},"packetLoss":{"total":0,"download":0,"upload":0},"connectionQuality":null,"jvbRTT":16,"maxEnabledResolution":360}

The server is running on docker behind a nginx server that is running on the actual machine.

normen avatar Mar 13 '22 12:03 normen

I'd suggest opening an issue on the JVB bug tracker.

saghul avatar Mar 13 '22 14:03 saghul

@bgrozev any idea what this could be?

saghul avatar Mar 15 '22 18:03 saghul

Hi, I think i was able to manage this problem with this config lines in ".jitsi-meet-cfg/web/custom-config.js":

config.videoQuality.maxBitratesVideo.H264 = { low: 200000, standard: 500000, high: 1500000 }; config.videoQuality.maxBitratesVideo.VP8 = { low: 200000, standard: 500000, high: 1500000 }; config.videoQuality.maxBitratesVideo.VP9 = { low: 100000, standard: 300000, high: 1200000 };

Based on: https://community.jitsi.org/t/jvb-error-invalid-message-received-parameter-specified-as-non-null-is-null/106505

Z

somzoli avatar Mar 22 '22 12:03 somzoli