-
Notifications
You must be signed in to change notification settings - Fork 26
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
remove use of hacks #41
base: master
Are you sure you want to change the base?
Conversation
I added a new argument to rospy.Service (in ros_comm) so the error handling code can be overriden to suppress the rospy.logerr output. See https://github.com/esteve/ros_comm/compare/custom-error-handler Though I don't know if that was the sole reason for patching ServiceImpl, would that change in rospy be enough? |
Interesting that the coverage went down. I wonder if the patch to rospy is not sufficient. I am pretty sure that I tested it though. Can you look into why the coverge went down? |
Sure, no problem. src/capabilities/server.py has fairly low coverage (31%), I'll see if I can improve it a bit. |
Specifically |
@wjwwood Okay, I must have read the Coveralls and Travis output wrong. The change in the Service constructor signature makes the code in this branch incompatible with the released version of rospy, and thus the tests never run past the first call to the Service constructor (see https://coveralls.io/files/108492233#L281). Also, Travis shouldn't report that the build was correct despite the errors (https://travis-ci.org/osrf/capabilities/builds/16155234#L1321), I'll make it a bit more robust. |
Yes, there looks to be a false positive there. |
It is weird that this is still not getting back the coverage, it is like the fix in rospy was not sufficient to replace the hack we had in there. @esteve can you look into this, testing the coverage from source on the latest version of |
@esteve bump, lets try to resolve this by early next week if possible, I am ramping up for a |
@wjwwood I created a pull request for ros_comm with the changes for defining custom handlers for errors [1]. Once we merge that, we can merge this pull request. 1 - ros/ros_comm#375 |
Waiting for ros/ros_comm to be released before merging this branch. |
This hack:
https://github.com/osrf/capabilities/blob/master/scripts/capability_server#L5-L22
Can be removed since
rospy
version1.9.50
is now out:http://www.ros.org/debbuild/hydro.html?q=rospy
http://www.ros.org/debbuild/groovy.html?q=rospy
We should also investigate making an upstream fix/change for this hack:
https://github.com/osrf/capabilities/blob/master/src/capabilities/server.py#L91-L116