Open
Description
This change seems to have been made in #2142
while (rclcpp::ok(this->context_) && spinning.load()) {
this->spin_once_impl(std::chrono::nanoseconds(-1));
}
I guess it should be
while (rclcpp::ok(this->context_) && spinning.load()) {
this->spin_all(std::chrono::nanoseconds(0));
}
Metadata
Metadata
Assignees
Labels
No labels