-
Notifications
You must be signed in to change notification settings - Fork 71
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
In Examples, Ctrl+C Errors on Exit with Simulated Robot #48
Comments
rethink-imcmahon
pushed a commit
that referenced
this issue
Sep 8, 2015
This commit removes reliance on rospy for handling the shutdown behavior when a Ctrl+C signal is asserted on the joint_velocity_wobbler example. Cleanup was not properly being executed in only the simulated robot through rospy's on_shutdown() callback handler. This change has been tested on both the simulated and real Baxter robots.
rethink-imcmahon
pushed a commit
that referenced
this issue
Sep 8, 2015
This commit removes reliance on rospy for handling the shutdown behavior when a Ctrl+C signal is asserted on the joint_velocity_wobbler example. Cleanup was not properly being executed in only the simulated robot through rospy's on_shutdown() callback handler. This change has been tested on both the simulated and real Baxter robots.
rethink-imcmahon
pushed a commit
that referenced
this issue
Sep 8, 2015
This commit removes reliance on rospy for handling the shutdown behavior when a Ctrl+C signal is asserted on the joint_velocity_wobbler example. Cleanup was not properly being executed in only the simulated robot through rospy's on_shutdown() callback handler. This change has been tested on both the simulated and real Baxter robots.
rethink-imcmahon
changed the title
joint_velocity_wobbler Errors on Exit with Simulated Robot
In Examples, Ctrl+C Errors on Exit with Simulated Robot
Sep 8, 2015
Either this should get fixed in all 13 of our examples with on_shutdown behavior or the root cause needs to be sussed out in |
dirk-thomas
pushed a commit
to ros/ros_comm
that referenced
this issue
Nov 9, 2015
Timers go off and start periodically running in the background, and will throw exceptions when ros shutdown occurs because of the sleep function. These are impossible to catch as they're off in a background thread and can be cleanly handled as in the code change. Others with the same problem: * [baxter examples](RethinkRobotics/baxter_examples#48)
Appears there was an underlying @stonier thanks for fixing this! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
None yet
0 participants
A crossover issue from RethinkRobotics/baxter_simulator#58. The gist:
When running
baxter_examples joint_velocity_wobbler.py
on thebaxter_simulator
robot, and Ctrl+C is asserted by the user, various errors can be produced byrospy
on exit:A Timer Error:
A baxter_interface Limb Error:
This is likely a
rospy
simulated_time
timer issue, since thejoint_velocity_wobbler
script does not error like this on the real robot, but it is desirable to find a fix that would prevent this issue entirely.The text was updated successfully, but these errors were encountered: