-
Notifications
You must be signed in to change notification settings - Fork 913
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
Custom error handler #375
Custom error handler #375
Conversation
This looks ok to me. The default behavior shouldn't change and the other part has been tested against capabilities. |
+1 |
@@ -540,7 +540,7 @@ class ServiceImpl(_Service): | |||
Implementation of ROS Service. This intermediary class allows for more configuration of behavior than the Service class. | |||
""" | |||
|
|||
def __init__(self, name, service_class, handler, buff_size=DEFAULT_BUFF_SIZE): | |||
def __init__(self, name, service_class, handler, buff_size=DEFAULT_BUFF_SIZE, error_handler=None): |
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.
Since the new argument is anything but trivial it should get a description in the doc block. Or at least mention which other constructor it relates to (since it is documented there).
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.
He has some doc stuff in the Service
class, I think this is slim on docs because it is the Impl
class.
Please address the one remaining comment and finally squash your commits. |
@dirk-thomas done! |
Cherry-picked to hydro-devel. |
Custom error handler
This branch allows users to define a custom behavior for handling exceptions raised from within a service.