From 7626f21c3f990dcfaf31c21462e89839a4fb073f Mon Sep 17 00:00:00 2001 From: "Federico M. Facca" Date: Wed, 13 Mar 2024 10:19:31 +0100 Subject: [PATCH] remove any from the proto for compatibility with LV --- proto/platform/v1/task.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proto/platform/v1/task.proto b/proto/platform/v1/task.proto index b2670d9..da8e034 100644 --- a/proto/platform/v1/task.proto +++ b/proto/platform/v1/task.proto @@ -1,6 +1,6 @@ syntax = "proto3"; -import "google/protobuf/any.proto"; +//import "google/protobuf/any.proto"; /* Messages to support coordination among processes/services in the platform. @@ -36,7 +36,7 @@ enum NotificationType { message Parameter { string name = 1; //The parameter name - google.protobuf.Any value = 2; //The parameter value + string value = 2; //The parameter value } /* A task message.