-
Notifications
You must be signed in to change notification settings - Fork 310
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
Controllers not deactivated on error in update on Humble #1873
Comments
@saikishor can we backport #1499? |
It shouldn't be hard to backport it. The problem is this is a change in behaviour, Moreover, I'm not sure if @ros-controls/ros2-maintainers are fine with this kind of change |
It is a change of behavior only if a user implemented an ERROR return value, which was just ignored up to now. However, I would not put too much effort in the backport, users always can build the rolling version from source to have all the new features. |
That would work for me. I can see how the change in behaviour is something to consider carefully. But arguably, the current behaviour is wrong ;) We can leave that up to @saikishor and the other @ros-controls/ros2-maintainers. |
We could log a warning if an ERROR was returned, but don't change the behavior of it? |
Yes that would also be an acceptable change which clearly lets the users know what is happening instead of (somewhat) silently failing on Humble! |
Describe the bug
When a controller returns
return_type::ERROR
in itsupdate()
function, it does not get deactivated.For example, using following snippet:
The controller will spam
Something bad happened
to the console continuously instead of stopping the controller.Expected behavior
I expected a controller to get deactivated once it returns
return_type::ERROR
.Environment (please complete the following information):
Additional context
This functionality is already implemented in the master branch (#1499). Is the choice to not include in Humble conscious? Are there any workarounds? Or would I need to build from source from the master branch?
Thanks!
The text was updated successfully, but these errors were encountered: