-
Notifications
You must be signed in to change notification settings - Fork 691
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(autoware_map_loader): exec name renamed in 24652f8 #10247
base: main
Are you sure you want to change the base?
fix(autoware_map_loader): exec name renamed in 24652f8 #10247
Conversation
Signed-off-by: Grzegorz Głowacki <gglowacki@autonomous-systems.pl>
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #10247 +/- ##
==========================================
+ Coverage 26.24% 26.25% +0.01%
==========================================
Files 1379 1381 +2
Lines 107451 107471 +20
Branches 41403 41403
==========================================
+ Hits 28204 28221 +17
- Misses 76434 76437 +3
Partials 2813 2813
*This pull request uses carry forward flags. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
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.
Thank you for the contribution!
I've confirmed that the independent launch of lanelet2_map_loader
works well with this commit, but could you check the following comment?
@@ -8,7 +8,7 @@ | |||
<param from="$(var lanelet2_map_loader_param_path)" allow_substs="true"/> | |||
</node> | |||
|
|||
<node pkg="autoware_map_loader" exec="lanelet2_map_loader" name="lanelet2_map_loader" output="both"> | |||
<node pkg="autoware_map_loader" exec="autoware_lanelet2_map_loader" name="autoware_lanelet2_map_loader" output="both"> |
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.
Could you keep the node name of lanelet2_map_loader?
This is because the default node name is NOT preferred to have the autoware_
prefix.
(Yes there are some other nodes that have the autoware_
prefix but we don't want autoware_
all over the place when we ros2 node list
.)
<node pkg="autoware_map_loader" exec="autoware_lanelet2_map_loader" name="autoware_lanelet2_map_loader" output="both"> | |
<node pkg="autoware_map_loader" exec="autoware_lanelet2_map_loader" name="lanelet2_map_loader" output="both"> |
Description
exec has been renamed in 24652f834f73b13b3e4465
but wasn't renamed in default launcher.
Related links
Parent Issue:
#8927
24652f8#diff-87cd83c29c31953b416406e475004f933bad5ec63e534a5c1ca18e2747d3d534R36
Effects on system behavior
None.