From 4f4e3e97e61cb25ea9f53f3fed15fe579514ee63 Mon Sep 17 00:00:00 2001 From: Steven Hartley Date: Wed, 13 Nov 2024 07:35:10 -0500 Subject: [PATCH] Fix uStreamer service name 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;