From 8e9f2eaf39b9a35a788130063c79da53e15296e7 Mon Sep 17 00:00:00 2001
From: Waleed Akbar <wakbar@cttc.es>
Date: Tue, 27 Aug 2024 15:35:53 +0000
Subject: [PATCH] changes in Analyzer proto file.

- Assignement number was incorrect, 5 was assigned twice.
---
 proto/analytics_frontend.proto | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/proto/analytics_frontend.proto b/proto/analytics_frontend.proto
index 801fcdbc4..45e910a70 100644
--- a/proto/analytics_frontend.proto
+++ b/proto/analytics_frontend.proto
@@ -42,10 +42,10 @@ message Analyzer {
   AnalyzerOperationMode      operation_mode       = 5; // Operation mode of the analyzer
 
   // In batch mode...
-  float                      batch_min_duration_s = 5; // ..., min duration to collect before executing batch
-  float                      batch_max_duration_s = 6; // ..., max duration collected to execute the batch
-  uint64                     batch_min_size       = 7; // ..., min number of samples to collect before executing batch
-  uint64                     batch_max_size       = 8; // ..., max number of samples collected to execute the batch
+  float                      batch_min_duration_s = 6; // ..., min duration to collect before executing batch
+  float                      batch_max_duration_s = 7; // ..., max duration collected to execute the batch
+  uint64                     batch_min_size       = 8; // ..., min number of samples to collect before executing batch
+  uint64                     batch_max_size       = 9; // ..., max number of samples collected to execute the batch
 }
 
 message AnalyzerFilter {
-- 
GitLab