From 567dae94f8d42d07ce68ebb6712cf360e9bd622d Mon Sep 17 00:00:00 2001 From: fmessmer Date: Fri, 22 Sep 2023 10:41:03 +0200 Subject: [PATCH] fix format --- include/ros1_bridge/action_factory.hpp | 32 +++++++++++++++----------- 1 file changed, 18 insertions(+), 14 deletions(-) diff --git a/include/ros1_bridge/action_factory.hpp b/include/ros1_bridge/action_factory.hpp index 62edb8e8..a7de958d 100644 --- a/include/ros1_bridge/action_factory.hpp +++ b/include/ros1_bridge/action_factory.hpp @@ -151,22 +151,24 @@ class ActionFactory_1_2 : public ActionFactoryInterface [this, &gh2_future](std::shared_future gh2) mutable { try { // this is a workaround for the underlying actionlib implementation bug - // this callback function should never get called the the shared_future + // this callback function should never get called the the shared_future // is not ready/valid int counter = 0; - while(!gh2_future.valid()) - { - if( counter >= 10) - { - RCLCPP_ERROR(this->logger_, "std::shared_future not valid for more than 1.0 seconds. " - "Rejecting action goal."); + while(!gh2_future.valid()) { + if( counter >= 10) { + RCLCPP_ERROR( + this->logger_, + "std::shared_future not valid for more than 1.0 seconds. " + "Rejecting action goal."); gh1_.setRejected(); return; } - RCLCPP_WARN(this->logger_, "std::shared_future not valid. " - "This indicates a bug in the actionlib implementation. " - "goal_reponse_callback should only get called when the future is valid. " - "Waiting and retrying..."); + RCLCPP_WARN( + this->logger_, + "std::shared_future not valid. " + "This indicates a bug in the actionlib implementation. " + "goal_reponse_callback should only get called when the future is valid. " + "Waiting and retrying..."); rclcpp::sleep_for(std::chrono::milliseconds(100)); counter++; } @@ -186,9 +188,11 @@ class ActionFactory_1_2 : public ActionFactoryInterface auto fut = client_->async_cancel_goal(gh2_); } } - } catch (const std::future_error& e) { - RCLCPP_ERROR_STREAM(this->logger_, "Caught a future_error with code '" << e.code() - << "' Message: '" << e.what()<<"'"); + } catch (const std::future_error & e) { + RCLCPP_ERROR_STREAM( + this->logger_, + "Caught a future_error with code '" << e.code() << + "' Message: '" << e.what() << "'"); throw; } };