We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ad3fc6 commit b286dc0Copy full SHA for b286dc0
jitsi-media-transform/src/main/kotlin/org/jitsi/nlj/transform/node/PacketCacher.kt
@@ -37,7 +37,8 @@ class PacketCacher : ObserverNode("Packet cache") {
37
38
override fun getNodeStats(): NodeStatsBlock {
39
return super.getNodeStats().apply {
40
- addBlock(packetCache.getNodeStats())
+ // Put the values directly in the node stats and not inside a block to make aggregation work correctly.
41
+ aggregate(packetCache.getNodeStats())
42
}
43
44
0 commit comments