-
Notifications
You must be signed in to change notification settings - Fork 334
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 WaitSet issue in tests #1206
Merged
Merged
Changes from 28 commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
8ff7c9b
add fix of WaitSet to velocity_controllers
saikishor 41b5d51
simplify the logic of the wait_set and update the common method
saikishor 9b77e55
Add fix to the forward_command_controller
saikishor 7d7914e
add fix to the MultiInterfaceForwardCommandControllerTest
saikishor 71f8066
Add initial fix of the command subscription to the JTC
saikishor 2087ccb
Revert "Add initial fix of the command subscription to the JTC"
saikishor e358c06
Use executor instead of the wait_set hack for the JTC
saikishor 8a1799d
Revert "add initial fix of WaitSet to all controllers"
saikishor f18c15b
Add executor to process callbacks in the velocity_controller
saikishor ca1f192
added executor to the tests of forward_command_controller
saikishor 08d9679
added executor to the tests of position_controllers
saikishor 3c22857
added executor to the tests of range_sensor_broadcaster
saikishor 5fc6f21
added executor to the tests of imu_sensor_broadcaster
saikishor 8c9810d
added executor to the tests of force_torque_sensor_broadcaster
saikishor 73975ff
added executor to the tests of diff_drive_controller
saikishor b07d776
added executor to the tests of tricycle_steering_controller
saikishor 896d2a5
added executor to the tests of tricycle_controller
saikishor a575e9c
added executor to the tests of joint_state_broadcaster
saikishor e1125c4
added executor to the tests of effort_controllers
saikishor 1b5c87a
added executor to the tests of ackermann_steering_controller
saikishor a266104
added executor to the tests of pid_controller
saikishor cb5f689
added executor to the tests of steering_controllers_library
saikishor 4294332
added executor to the tests of bicycle_steering_controller
saikishor 8adc1cc
added executor to the tests of admittance_controller
saikishor a094e02
fix documentation of the modified methods
saikishor 28fdb9f
Merge branch 'master' into fix/wait_set
saikishor 696b975
Merge branch 'master' into fix/wait_set
saikishor 3e6095e
Merge branch 'master' into fix/wait_set
saikishor 1d2b3b6
remove asserts and then break out of the loop once the message is rec…
saikishor File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
I'm not sure I'm understanding this part completely but I think adding the node before resetting the local var is problematic. Why do we even need to reset it and then check that it's still reset?
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.
It shouldn't be a problem unless you spin in between. if you spin yes, then it would reset and be a problem. I was just resetting and added assert to be sure nothing much
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 it is a local variable... does it matter at all if we not reset it?
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.
Nope, it doesn't matter. I can remove it
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.
Thanks. Done