We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18b788b commit 7dc9ca0Copy full SHA for 7dc9ca0
plugins/datastreamer_plugin/fastdds/Participant.cpp
@@ -173,10 +173,10 @@ void Participant::create_subscription(
173
DataTypeNameType type_name = discovery_database_->operator [](topic_name).first;
174
DynamicType::_ref_type dyn_type;
175
176
- // Check if type is already registered
+ // Check if type info is available
177
if (discovery_database_->operator [](topic_name).second == false)
178
{
179
- WARNING("Type " << topic_name << " has not been registered yet");
+ WARNING("Type " << topic_name << ": info not available yet");
180
throw InconsistencyException("Trying to create Data Reader in a non registered type: " + topic_name);
181
}
182
0 commit comments