We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5423eba commit a05d10cCopy full SHA for a05d10c
nav2_regulated_pure_pursuit_controller/src/parameter_handler.cpp
@@ -226,7 +226,7 @@ rcl_interfaces::msg::SetParametersResult ParameterHandler::validateParameterUpda
226
logger_, "The value inflation_cost_scaling_factor is incorrectly set, "
227
"it should be >0. Ignoring parameter update.");
228
result.successful = false;
229
- } else if (parameter.as_double() < 0.0) {
+ } else if (name.find(plugin_name_ + ".") == 0 && parameter.as_double() < 0.0) {
230
RCLCPP_WARN(
231
logger_, "The value of parameter '%s' is incorrectly set to %f, "
232
"it should be >=0. Ignoring parameter update.",
0 commit comments