Skip to content

Commit d309d4c

Browse files
committed
make linter happy
1 parent 407ea69 commit d309d4c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

protobuf/video/sfu/models/models.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ message InboundRtp {
475475
double jitter_seconds = 2; // stat["jitter"]
476476
uint64 packets_received = 3; // stat["packetsReceived"]
477477
uint64 packets_lost = 4; // stat["packetsLost"]
478-
double packet_loss_percent = 5; // (packets_lost / (packets_received + packets_lost)) * 100; skip if denominator <= 0 or counters decreased
478+
double packet_loss_percent = 5; // (packets_lost / (packets_received + packets_lost)) * 100;skip if denominator <= 0 or counters decreased
479479

480480
// -------- AUDIO METRICS --------
481481
uint32 concealment_events = 10; // stat["concealmentEvents"]

protobuf/video/sfu/signal_rpc/signal.proto

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@ message SendMetricsRequest {
6969
string session_id = 1;
7070
string unified_session_id = 2;
7171

72-
repeated models.InboundRtp inbound = 3;
73-
repeated models.OutboundRtp outbound = 4;
74-
repeated models.RemoteInboundRtp remote_inbound = 5;
75-
repeated models.RemoteOutboundRtp remote_outbound = 6;
72+
repeated models.InboundRtp inbounds = 3;
73+
repeated models.OutboundRtp outbounds = 4;
74+
repeated models.RemoteInboundRtp remote_inbounds = 5;
75+
repeated models.RemoteOutboundRtp remote_outbounds = 6;
7676
}
7777

7878
message SendMetricsResponse {

0 commit comments

Comments
 (0)