File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
easynav_gridmap_maps_manager/src/easynav_gridmap_maps_manager Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -89,11 +89,11 @@ GridmapMapsManager::on_initialize()
8989 }
9090
9191 gridmap_pub_ = node->create_publisher <grid_map_msgs::msg::GridMap>(
92- node->get_name () + std::string (" /" ) + plugin_name + " /map" ,
92+ node->get_fully_qualified_name () + std::string (" /" ) + plugin_name + " /map" ,
9393 rclcpp::QoS (1 ).transient_local ().reliable ());
9494
9595 incoming_map_sub_ = node->create_subscription <grid_map_msgs::msg::GridMap>(
96- node->get_name () + std::string (" /" ) + plugin_name + " /incoming_map" ,
96+ node->get_fully_qualified_name () + std::string (" /" ) + plugin_name + " /incoming_map" ,
9797 100 ,
9898 [this ](grid_map_msgs::msg::GridMap::UniquePtr msg) {
9999 grid_map::GridMap incoming;
@@ -109,7 +109,7 @@ GridmapMapsManager::on_initialize()
109109 });
110110
111111 savemap_srv_ = node->create_service <std_srvs::srv::Trigger>(
112- node->get_name () + std::string (" /" ) + plugin_name + " /savemap" ,
112+ node->get_fully_qualified_name () + std::string (" /" ) + plugin_name + " /savemap" ,
113113 [this ](
114114 const std::shared_ptr<std_srvs::srv::Trigger::Request> request,
115115 std::shared_ptr<std_srvs::srv::Trigger::Response> response)
You can’t perform that action at this time.
0 commit comments