We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Required Info:
rclcpp::SubscriptionOptions opts{}; opts.topic_stats_options.state = rclcpp::TopicStatisticsState::Enable; rclcpp::QoS bad_qos{}; this->creare_subscription<DummyMsg>("/some_topic", bad_qos.history(rclcpp::HistoryPolicy::Unknown), cb_func, opts);
The /statistics publisher has a stable, well-defined QoS profile.
/statistics
The QoS profile passed to create_subscription is applied to both the subscription and the /statistics publisher. Code reference in humble and iron.
create_subscription
The text was updated successfully, but these errors were encountered:
@JWhitleyWork that makes sense to me. adding QoS to TopicStatisticsOptions struct as statistics publisher QoS configuration.
QoS
TopicStatisticsOptions
statistics
Sorry, something went wrong.
Since that PR was merged this issue should be complete right?
Yeah, I'm going to close it. Thanks!
No branches or pull requests
Bug report
Required Info:
Steps to reproduce issue
Expected behavior
The
/statistics
publisher has a stable, well-defined QoS profile.Actual behavior
The QoS profile passed to
create_subscription
is applied to both the subscription and the/statistics
publisher. Code reference in humble and iron.The text was updated successfully, but these errors were encountered: