Skip to content

Commit

Permalink
fix missing param declare (ros-navigation#4203)
Browse files Browse the repository at this point in the history
Signed-off-by: nelson <kaichie.lee@gmail.com>
  • Loading branch information
kaichie authored and huemerj committed Mar 24, 2024
1 parent edd1096 commit 10c3b3f
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -67,6 +67,9 @@ BtActionServer<ActionT>::BtActionServer(
if (!node->has_parameter("overwrite_xml")) {
node->declare_parameter("overwrite_xml", false);
}
if (!node->has_parameter("wait_for_service_timeout")) {
node->declare_parameter("wait_for_service_timeout", 1000);
}

std::vector<std::string> error_code_names = {
"follow_path_error_code",
Expand Down

0 comments on commit 10c3b3f

Please sign in to comment.