Skip to content

Commit 6f9c131

Browse files
pepisgMarc-Morcos
authored andcommitted
Expose action server result timeout as a parameter in bt navigator servers (ros-navigation#3787)
* Expose action server default timeout in bt navigator servers * typo * duplicated comment * Expose result timeout in other actions * Proper timeout in bt node * Change default timeouts and remove comments * Remove comment in params file * uncrustify controller server
1 parent 5047482 commit 6f9c131

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

nav2_controller/src/controller_server.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,11 @@ ControllerServer::on_configure(const rclcpp_lifecycle::State & /*state*/)
222222
rcl_action_server_options_t server_options = rcl_action_server_get_default_options();
223223
server_options.result_timeout.nanoseconds = RCL_S_TO_NS(action_server_result_timeout);
224224

225+
double action_server_result_timeout;
226+
get_parameter("action_server_result_timeout", action_server_result_timeout);
227+
rcl_action_server_options_t server_options = rcl_action_server_get_default_options();
228+
server_options.result_timeout.nanoseconds = RCL_S_TO_NS(action_server_result_timeout);
229+
225230
// Create the action server that we implement with our followPath method
226231
// This may throw due to real-time prioritzation if user doesn't have real-time permissions
227232
try {

0 commit comments

Comments
 (0)