From 4193d2a9a3a35249645de2b45f501efd5bde7280 Mon Sep 17 00:00:00 2001 From: Andre Senna <“andre.senna@gmail.com”> Date: Tue, 2 Jul 2024 09:36:23 -0300 Subject: [PATCH] Added fields used by worker threads --- common.proto | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/common.proto b/common.proto index c0f1240..f73b5fb 100644 --- a/common.proto +++ b/common.proto @@ -10,10 +10,14 @@ message Ack { message HandleList { repeated string handle_list = 1; - string context = 2; + int32 request_type = 2; + int64 hebbian_network = 3; + string context = 4; } message HandleCount { map handle_count = 1; - string context = 2; + int32 request_type = 2; + int64 hebbian_network = 3; + string context = 4; }