-
Notifications
You must be signed in to change notification settings - Fork 580
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: explicitly add the same namespace as the parent node #3360
fix: explicitly add the same namespace as the parent node #3360
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## main #3360 +/- ##
==========================================
- Coverage 46.25% 45.84% -0.41%
==========================================
Files 717 717
Lines 62596 62577 -19
Branches 7568 7564 -4
==========================================
- Hits 28947 28681 -266
- Misses 33482 33729 +247
Partials 167 167 ☔ View full report in Codecov by Sentry. |
Thank you! A small formatting fix is needed, but otherwise looks good. |
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 was wondering why this node didn't behave like the others. Looks good.
@sea-bass |
Added the label! Sorry I missed that. |
* fix: explicitly add the same namespace as the parent node * reformat * reformat (cherry picked from commit bbf7e40)
Description
Problem
When launching the
move_group
node with a namespace and runningmoveit_py
within a node that has the same namespace, themoveit_simple_controller_manager
lacked a namespace. As a result, the robot could not operate because the action for trajectory execution was missing the necessary namespace.Solution
Explicitly added the parent node's namespace.
Checklist