From 4835ba1de9ddd2c6a743403640d89ff1be06864d Mon Sep 17 00:00:00 2001 From: Steven Hartley Date: Wed, 13 Nov 2024 09:59:05 -0500 Subject: [PATCH] Fix uStreamer service name (#250) When I created the ustreamer proto, I used the utwin proto and forgot to replace the service name to the correct one, this could cause issues in built artifacts. #249 --- up-core-api/uprotocol/core/ustreamer/v1/ustreamer.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/up-core-api/uprotocol/core/ustreamer/v1/ustreamer.proto b/up-core-api/uprotocol/core/ustreamer/v1/ustreamer.proto index 0e5481c..9b2a2ac 100644 --- a/up-core-api/uprotocol/core/ustreamer/v1/ustreamer.proto +++ b/up-core-api/uprotocol/core/ustreamer/v1/ustreamer.proto @@ -25,7 +25,7 @@ option java_multiple_files = true; option cc_generic_services = true; // uStreamer Service -service uTwin { +service uStreamer { option (uprotocol.service_name) = "core.ustreamer"; // Service name option (uprotocol.service_version_major) = 1; option (uprotocol.service_version_minor) = 0;