-
Notifications
You must be signed in to change notification settings - Fork 178
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ROS2] increase history_depth for subscrition #168
[ROS2] increase history_depth for subscrition #168
Conversation
This looks good to me. Please target the PR against the ros2 branch. I'll take care of a backport to existing distributions and cut a release. |
f727008
to
18f63c4
Compare
@Karsten1987 |
@Karsten1987 Hi Karsten. We need this PR for Foxy. But, it looks like this PR has stalled. What needs to be done to progress it? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a little nitpick, otherwise all almost good, except the linters.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
actually, I've just seen that uncrustify and cpplint aren't happy. Mind addressing them?
You'll find the details in the GH actions, e.g.:
[18.595s] 12: --- src/aggregator.cpp
[18.595s] 12: +++ src/aggregator.cpp.uncrustify
[18.595s] 12: @@ -103 +103,2 @@
[18.595s] 12: - "/diagnostics", rclcpp::SystemDefaultsQoS().keep_last(history_depth_), std::bind(&Aggregator::diagCallback, this, _1));
[18.595s] 12: + "/diagnostics", rclcpp::SystemDefaultsQoS().keep_last(history_depth_),
[18.595s] 12: + std::bind(&Aggregator::diagCallback, this, _1));
…gator Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>
3c82c63
to
e6fd43c
Compare
This resolves issue : #167.
This makes the following modfiication:
history_depth
for diagnostic_aggregator node to enable users to set history depth size(i.e. queue size) for subscription.Signed-off-by: mitsudome-r ryohsuke.mitsudome@tier4.jp