-
Notifications
You must be signed in to change notification settings - Fork 245
trigger() blocks forever - bug? #146
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
Comments
Okay, nevermind: it is related to the So, would it be possible to skip |
Me and all my research group have the exact same issue. Is it going to be fixed? In which version? |
jspricke
added a commit
to jspricke/rviz_visual_tools
that referenced
this issue
Aug 2, 2021
waitForSubscriber used to call ros::spinOnce() which could trigger callbacks from other topics in other threads. In case those have a lock to only get called once, this would look the visual_tools thread. Closes: PickNikRobotics#146
JafarAbdi
pushed a commit
that referenced
this issue
Oct 5, 2022
waitForSubscriber used to call ros::spinOnce() which could trigger callbacks from other topics in other threads. In case those have a lock to only get called once, this would look the visual_tools thread. Closes: #146
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
I am facing the problem that
does not return. Even when Rviz connects, nothing will happen. I don't know if this is related to my issue but note that neither
visual_tools->loadMarkerPub(false, true);
norvisual_tools->loadMarkerPub(true, true);
is working. (I am requiring latched topics.)Once I comment this block:
in the implementation of
RvizVisualTools::publishMarkers()
(invoked bytrigger()
), it is working fine.Is this a bug? IMHO, there should be the possibility to skip the
waitForSubscriber()
.The text was updated successfully, but these errors were encountered: