Skip to content
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

Fix uncaught exception in joint_state_controller #630

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion joint_state_controller/src/joint_state_controller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,11 @@ namespace joint_state_controller
// initialize time exactly once, to maintain publish rate through controller resets
if (!pub_time_initialized_)
{
last_publish_time_ = time - ros::Duration(1.001/publish_rate_); //ensure publish on first cycle
try {
last_publish_time_ = time - ros::Duration(1.001/publish_rate_); //ensure publish on first cycle
} catch(std::runtime_error& ex) { // negative ros::Time is not allowed
last_publish_time_ = ros::Time::MIN;
}
pub_time_initialized_ = true;
}
}
Expand Down
Loading