Skip to content

Commit

Permalink
Fixed missing namespace forwarding
Browse files Browse the repository at this point in the history
  • Loading branch information
guihomework committed Mar 13, 2023
1 parent fcb9cca commit b18ffbd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/control_filters/gravity_compensation.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,8 @@ bool GravityCompensation<T>::configure()
try
{
parameter_handler_ =
std::make_shared<gravity_compensation_filter::ParamListener>(this->params_interface_);
std::make_shared<gravity_compensation_filter::ParamListener>(this->params_interface_,
this->param_prefix_);
}
catch (rclcpp::exceptions::ParameterUninitializedException & ex) {
RCLCPP_ERROR((*logger_), "GravityCompensation filter cannot be configured: %s", ex.what());
Expand Down

0 comments on commit b18ffbd

Please sign in to comment.