You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've identified several issues with the current protobuf files that need to be addressed:
Missing Message Definition: In the braking_service.proto file, there is a BrakeAssistance publish topic, but the corresponding message definition is missing in its topics proto.
Incorrect Resource name: In engine_service.proto, the publish topic is defined as: option (uprotocol.publish_topic) = { id : 0x8001, name : "horn", message : "oil" };
This should be updated to: option (uprotocol.publish_topic) = { id : 0x8001, name : "oil", message : "Oil" };
The text was updated successfully, but these errors were encountered:
neelam-kushwah
changed the title
Update Proto Imports and Resolve issues
Fix Issues with Missing Message and Incorrect Resource Name
Jul 29, 2024
I've identified several issues with the current protobuf files that need to be addressed:
braking_service.proto
file, there is aBrakeAssistance
publish topic, but the corresponding message definition is missing in its topics proto.option (uprotocol.publish_topic) = { id : 0x8001, name : "horn", message : "oil" };
This should be updated to:
option (uprotocol.publish_topic) = { id : 0x8001, name : "oil", message : "Oil" };
The text was updated successfully, but these errors were encountered: