From 9fbc8a20d6dbe61e3f5b7506c4a2e85603bf6104 Mon Sep 17 00:00:00 2001 From: gifrerenom <lluis.gifre@cttc.es> Date: Tue, 31 Oct 2023 17:56:01 +0000 Subject: [PATCH] Proto Forecaster: - ForecastLinkCapacityReply: Renamed attribute current_capacity_gbps to current_used_capacity_gbps - ForecastLinkCapacityReply: Renamed attribute forecasted_capacity_gbps to forecast_used_capacity_gbps --- proto/forecaster.proto | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/proto/forecaster.proto b/proto/forecaster.proto index b4caf3246..45cf6967c 100644 --- a/proto/forecaster.proto +++ b/proto/forecaster.proto @@ -28,10 +28,10 @@ message ForecastLinkCapacityRequest { } message ForecastLinkCapacityReply { - context.LinkId link_id = 1; - float total_capacity_gbps = 2; - float current_capacity_gbps = 3; - float forecasted_capacity_gbps = 4; + context.LinkId link_id = 1; + float total_capacity_gbps = 2; + float current_used_capacity_gbps = 3; + float forecast_used_capacity_gbps = 4; } message ForecastTopologyCapacityRequest { -- GitLab