File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ std::string RosPythonInterpreterClient::run_python_command(
63
63
while (rclcpp::ok () &&
64
64
rclcpp::spin_until_future_complete (
65
65
ros_node_, response, std::chrono::seconds (1 )) !=
66
- rclcpp::executor:: FutureReturnCode::SUCCESS)
66
+ rclcpp::FutureReturnCode::SUCCESS)
67
67
{
68
68
RCLCPP_ERROR (rclcpp::get_logger (" rclcpp" ),
69
69
" Error while parsing command, retrying..." );
@@ -126,7 +126,7 @@ std::string RosPythonInterpreterClient::run_python_script(
126
126
auto response = script_client_->async_send_request (run_file_request_);
127
127
128
128
if (rclcpp::spin_until_future_complete (ros_node_, response) ==
129
- rclcpp::executor:: FutureReturnCode::SUCCESS)
129
+ rclcpp::FutureReturnCode::SUCCESS)
130
130
{
131
131
// Get the error.
132
132
return_string += response.get ()->result ;
@@ -154,4 +154,4 @@ std::string RosPythonInterpreterClient::run_python_script(
154
154
return return_string;
155
155
}
156
156
157
- } // namespace dynamic_graph_bridge
157
+ } // namespace dynamic_graph_bridge
You can’t perform that action at this time.
0 commit comments