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 noticed that the serialized_map.proto file doesn't have the option java_outer_classname line like other messages do. But when I added it, I noticed that that proto file has multiple messages defined, so we can add only one classname. I checked that adding
fixes the test, but only for the 1st message defined in the proto file - whichever one it is.
If we ignore the factory issue, the message works otherwise. We've been publishing and using a few messages from serialized_map.proto on ign-gazebo without issues.
I'm wondering if the only solution to this is splitting the messages into multiple files, or if there's another more appropriate solution to this. I think moving the messages to other files wouldn't break API / ABI as long as the existing message includes all others.
The text was updated successfully, but these errors were encountered:
While debugging gazebosim/gz-gui#69, I noticed that the
Factory::New
function fails forignition.msgs.SerializedStepMap
. This test currently fails:I noticed that the
serialized_map.proto
file doesn't have theoption java_outer_classname
line like other messages do. But when I added it, I noticed that that proto file has multiple messages defined, so we can add only one classname. I checked that addingoption java_outer_classname = "SerializedStepMapProtos";
fixes the test, but only for the 1st message defined in the proto file - whichever one it is.
If we ignore the factory issue, the message works otherwise. We've been publishing and using a few messages from
serialized_map.proto
onign-gazebo
without issues.I'm wondering if the only solution to this is splitting the messages into multiple files, or if there's another more appropriate solution to this. I think moving the messages to other files wouldn't break API / ABI as long as the existing message includes all others.
The text was updated successfully, but these errors were encountered: