-
Notifications
You must be signed in to change notification settings - Fork 223
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
Opt-in to qos overriding for publisher #246
Opt-in to qos overriding for publisher #246
Conversation
Signed-off-by: Brian Chen <brian.chen@openrobotics.org>
@gbiggs @jacobperron Is it possible to backport this PR to |
Signed-off-by: Brian Chen <brian.chen@openrobotics.org>
Is there any reason why the I am in the situation in which my publisher has a |
@MarcoMagriDev check this PR #288 it might be useful |
@ahcorde thanks for your fast reply. From what I understand from the PR you linked is somewhat of a low-level enabler of the functionality I am requesting. However, to set On the other hand, by simply add |
node.get(), in_topic, std::bind(pub_mem_fn, &pub, std::placeholders::_1), | ||
in_transport, rmw_qos_profile_default, sub_options); |
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.
Shouldn't this also be done in the subscription in the else
clause below?
Signed-off-by: Brian Chen <brian.chen@openrobotics.org>
Opts-in to recently avaliable QOS overriding for
image_transport republish
since a common use case with this package is working withsensor_data
qos.Signed-off-by: Brian Chen brian.chen@openrobotics.org