diff --git a/rmw_cyclonedds_cpp/src/rmw_node.cpp b/rmw_cyclonedds_cpp/src/rmw_node.cpp index 1d480b23..0aa015d2 100644 --- a/rmw_cyclonedds_cpp/src/rmw_node.cpp +++ b/rmw_cyclonedds_cpp/src/rmw_node.cpp @@ -1470,7 +1470,7 @@ static std::string make_fqtopic( bool avoid_ros_namespace_conventions) { if (avoid_ros_namespace_conventions) { - return std::string(topic_name) + "__" + std::string(suffix); + return std::string(topic_name) + std::string(suffix); } else { return std::string(prefix) + std::string(topic_name) + std::string(suffix); }