-
Notifications
You must be signed in to change notification settings - Fork 646
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
refactor(autoware_path_distance_calculator): prefix package and namespace with autoware #8085
refactor(autoware_path_distance_calculator): prefix package and namespace with autoware #8085
Conversation
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
a9038e6
to
cc57f06
Compare
common/autoware_path_distance_calculator/src/path_distance_calculator.cpp
Outdated
Show resolved
Hide resolved
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #8085 +/- ##
==========================================
- Coverage 23.76% 23.75% -0.02%
==========================================
Files 1379 1381 +2
Lines 101359 101405 +46
Branches 38522 38529 +7
==========================================
Hits 24086 24086
- Misses 74846 74892 +46
Partials 2427 2427
*This pull request uses carry forward flags. Click here to find out more. ☔ View full report in Codecov by Sentry. |
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.
LGTM
b893b41
to
bdd646d
Compare
…pace with autoware Signed-off-by: Esteve Fernandez <[email protected]>
bdd646d
to
0950558
Compare
@@ -1,7 +1,7 @@ | |||
<launch> | |||
<arg name="path" default="/planning/scenario_planning/lane_driving/behavior_planning/path"/> | |||
<arg name="distance" default="~/distance"/> | |||
<node pkg="path_distance_calculator" exec="path_distance_calculator_node" name="path_distance_calculator"> | |||
<node pkg="autoware_path_distance_calculator" exec="path_distance_calculator_node" name="path_distance_calculator"> |
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 think we need the autoware_
prefix for exec="path_distance_calculator_node"
as well, since the executable is named autoware_path_distance_calculator_node
in CMakeLists.txt.
EXECUTABLE ${PROJECT_NAME}_node |
…pace with autoware (autowarefoundation#8085) Signed-off-by: Esteve Fernandez <[email protected]>
…pace with autoware (autowarefoundation#8085) Signed-off-by: Esteve Fernandez <[email protected]> Signed-off-by: xtk8532704 <[email protected]>
Description
prefix package and namespace with autoware
Related links
Parent Issue:
How was this PR tested?
Notes for reviewers
None.
Interface changes
None.
Effects on system behavior
None.