This is an automated email from the ASF dual-hosted git repository.
bmahler pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git
The following commit(s) were added to refs/heads/master by this push:
new 20141da93 [FIX] Conflicting field ids in RateStatistics
20141da93 is described below
commit 20141da93b511d5f14ed8bd7f0c3bb7b3df2a8f5
Author: Devin Leamy <[email protected]>
AuthorDate: Mon Jan 22 14:29:26 2024 -0500
[FIX] Conflicting field ids in RateStatistics
`net_rate_statistics` and `net_rx_burst_size` both had field number 51.
`net_rate_statistics`, the new field, has been changed to field 54 in
RateStatistics.
---
include/mesos/mesos.proto | 2 +-
include/mesos/v1/mesos.proto | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/mesos/mesos.proto b/include/mesos/mesos.proto
index 5d3f2232e..5c65071c8 100644
--- a/include/mesos/mesos.proto
+++ b/include/mesos/mesos.proto
@@ -1937,7 +1937,7 @@ message ResourceStatistics {
optional double sampling_interval_secs = 10;
}
- optional RateStatistics net_rate_statistics = 51;
+ optional RateStatistics net_rate_statistics = 54;
// The kernel keeps track of RTT (round-trip time) for its TCP
// sockets. RTT is a way to tell the latency of a container.
diff --git a/include/mesos/v1/mesos.proto b/include/mesos/v1/mesos.proto
index 98c9a6693..17fe7552f 100644
--- a/include/mesos/v1/mesos.proto
+++ b/include/mesos/v1/mesos.proto
@@ -1901,7 +1901,7 @@ message ResourceStatistics {
optional double sampling_interval_secs = 10;
}
- optional RateStatistics net_rate_statistics = 51;
+ optional RateStatistics net_rate_statistics = 54;
// The kernel keeps track of RTT (round-trip time) for its TCP
// sockets. RTT is a way to tell the latency of a container.