Skip to content
Snippets Groups Projects
Commit f21c4cec authored by Tommy Persson's avatar Tommy Persson
Browse files

Bug fix

parent 2edcaa47
Branches
No related tags found
No related merge requests found
Pipeline #50625 passed
...@@ -134,7 +134,7 @@ bool load_nodelet(std::vector<std::string> pkgs, std::string tst_type) { ...@@ -134,7 +134,7 @@ bool load_nodelet(std::vector<std::string> pkgs, std::string tst_type) {
bool load_nodelet(std::string pkg, std::string tst_type) { bool load_nodelet(std::string pkg, std::string tst_type) {
ROS_ERROR("nodeletutil load_nodelet3: %s - %s", pkg.c_str(), tst_type.c_str()); ROS_ERROR("nodeletutil load_nodelet3: %s - %s", pkg.c_str(), tst_type.c_str());
std::string nodelet_type; std::string nodelet_type;
if (basic_nodelet_exists(pkg, tst_type, nodelet_type)) { if (nodelet_exists(pkg, tst_type, nodelet_type)) {
std::string ns = ros::names::clean (ros::this_node::getNamespace()); std::string ns = ros::names::clean (ros::this_node::getNamespace());
std::string nodelet_name = ns + "/" + tst_type; std::string nodelet_name = ns + "/" + tst_type;
std::string manager = pkg + "_manager"; std::string manager = pkg + "_manager";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment