-
Notifications
You must be signed in to change notification settings - Fork 42
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
Added qos autodetect #76
Added qos autodetect #76
Conversation
Signed-off-by: Gonzalo de Pedro <gonzalo@depedro.com.ar>
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.
One comment, otherwise LGTM!
src/rqt_plot/rosplot.py
Outdated
data_class = get_message(topic_type) | ||
data_class = get_message_class(topic_type) |
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.
What's the reason for this change? IMO, it seems like a backwards step. I would prefer to use the utility further upstream, all else being equal.
Signed-off-by: Gonzalo de Pedro <gonzalo@depedro.com.ar>
src/rqt_plot/rosplot.py
Outdated
from rosidl_runtime_py.utilities import get_message | ||
from rclpy.qos import QoSReliabilityPolicy | ||
from rqt_py_common.message_helpers import get_message_class |
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.
We need to also undo the change to the imports. We're using get_message
from rosidl_runtime_py
instead of get_message_class
.
Signed-off-by: Gonzalo de Pedro <gonzalo@depedro.com.ar>
Signed-off-by: Gonzalo de Pedro gonzalo@depedro.com.ar