Skip to content

Commit

Permalink
Remove ns from robot_description parameter (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
christophfroehlich authored Nov 11, 2024
1 parent a0f5944 commit 90b35d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kinematics_interface_kdl/src/kinematics_interface_kdl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ bool KinematicsInterfaceKDL::initialize(
// If the robot_description input argument is empty, try to get the
// robot_description from the node's parameters.
auto robot_param = rclcpp::Parameter();
if (!parameters_interface->get_parameter(ns + "robot_description", robot_param))
if (!parameters_interface->get_parameter("robot_description", robot_param))
{
RCLCPP_ERROR(LOGGER, "parameter robot_description not set in kinematics_interface_kdl");
return false;
Expand Down

0 comments on commit 90b35d7

Please sign in to comment.