-
Notifications
You must be signed in to change notification settings - Fork 683
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
feat(goal_planner): do not use isActivated() in deciding state transition #10056
feat(goal_planner): do not use isActivated() in deciding state transition #10056
Conversation
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
95797c1
to
3293b51
Compare
…tion Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>
3293b51
to
cef6775
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #10056 +/- ##
==========================================
- Coverage 28.28% 28.27% -0.01%
==========================================
Files 1484 1487 +3
Lines 111101 111138 +37
Branches 43170 43155 -15
==========================================
Hits 31426 31426
- Misses 76657 76693 +36
- Partials 3018 3019 +1
*This pull request uses carry forward flags. Click here to find out more. ☔ View full report in Codecov by Sentry. |
…tion (autowarefoundation#10056) Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>
…tion (autowarefoundation#10056) Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>
Description
goal_planner sends
updateRTCStatus
if it was able to find a stable safe path from the generated candidates (DECIDED status), and beforeupdateRTCStatus
isActivated()
is null because goal_planner RTC entry itself does not exist. And afterupdateRTCStatus
goal_planner RTC entry begins to exist but it remains DECIDED forever, soisActivated()
intransit_state
does not make sense at all by definition.depends #10052
Related links
Parent Issue:
How was this PR tested?
Notes for reviewers
None.
Interface changes
None.
Effects on system behavior
None.