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 9367c62 commit 7dc76daCopy full SHA for 7dc76da
nav2_behavior_tree/include/nav2_behavior_tree/bt_service_node.hpp
@@ -85,11 +85,11 @@ class BtServiceNode : public BT::ActionNodeBase
85
if (!service_client_->wait_for_service(wait_for_service_timeout_)) {
86
RCLCPP_ERROR(
87
node_->get_logger(), "\"%s\" service server not available after waiting for 1 s",
88
- service_node_name.c_str());
+ service_name_.c_str());
89
throw std::runtime_error(
90
std::string(
91
"Service server %s not available",
92
- service_node_name.c_str()));
+ service_name_.c_str()));
93
}
94
95
RCLCPP_DEBUG(
0 commit comments