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
for (iter = msgMap.begin(); iter != msgMap.end(); ++iter)
{
_types.push_back(iter->first);
}
// Add the types loaded from descriptor files
this->dynamicFactory->Types(_types);
}
I am not familiar yet with all of gazebo's components, and not at all with gz-msgs, but the above piece of code might be responsible for adding additional messages on the line :
Environment
Harmonic
And harmonic from source
Description
Multiple identical types sent by
MessageFactory::Types()
This issues was found as it breaks gazebo web, and is mentioned on
gz-launch
issue #246.Steps to reproduce
Output
In the browser's console we get
cf the aforementioned
gz-launch
issue where the op posted logs.I was able to fix the problem on the
gz-launch
side of things but my fix isn't great for many reasons.gz-msgs/core/src/MessageFactory.cc
Lines 129 to 142 in eaf96af
I am not familiar yet with all of gazebo's components, and not at all with
gz-msgs
, but the above piece of code might be responsible for adding additional messages on the line :gz-msgs/core/src/MessageFactory.cc
Line 141 in eaf96af
The messages that are part of msgMap have no duplicate of course, but after
wrench
, we get an additional message of typeAny
.The text was updated successfully, but these errors were encountered: