-
Notifications
You must be signed in to change notification settings - Fork 650
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_behavior_velocity_planner_common): remove lane_id check from arc_lane_util #7710
fix(autoware_behavior_velocity_planner_common): remove lane_id check from arc_lane_util #7710
Conversation
Signed-off-by: Y.Hisaki <yhisaki31@gmail.com>
Signed-off-by: Y.Hisaki <yhisaki31@gmail.com>
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #7710 +/- ##
===========================================
+ Coverage 14.84% 16.81% +1.96%
===========================================
Files 1999 486 -1513
Lines 139163 38889 -100274
Branches 43716 10368 -33348
===========================================
- Hits 20661 6539 -14122
+ Misses 95731 31473 -64258
+ Partials 22771 877 -21894
☔ View full report in Codecov by Sentry. |
…from arc_lane_util (autowarefoundation#7710) * fix(arc_lane_util): remove lane_id check from arc_lane_util Signed-off-by: Y.Hisaki <yhisaki31@gmail.com> * modify test_arc_lane_util.cpp Signed-off-by: Y.Hisaki <yhisaki31@gmail.com> --------- Signed-off-by: Y.Hisaki <yhisaki31@gmail.com>
…d check from arc_lane_util (autowarefoundation#7710)" This reverts commit be02771.
…d check from arc_lane_util (autowarefoundation#7710)" This reverts commit be02771.
…d check from arc_lane_util (autowarefoundation#7710)" This reverts commit be02771.
…from arc_lane_util (autowarefoundation#7710) * fix(arc_lane_util): remove lane_id check from arc_lane_util Signed-off-by: Y.Hisaki <yhisaki31@gmail.com> * modify test_arc_lane_util.cpp Signed-off-by: Y.Hisaki <yhisaki31@gmail.com> --------- Signed-off-by: Y.Hisaki <yhisaki31@gmail.com> Signed-off-by: palas21 <palas21@itu.edu.tr>
…from arc_lane_util (autowarefoundation#7710) * fix(arc_lane_util): remove lane_id check from arc_lane_util Signed-off-by: Y.Hisaki <yhisaki31@gmail.com> * modify test_arc_lane_util.cpp Signed-off-by: Y.Hisaki <yhisaki31@gmail.com> --------- Signed-off-by: Y.Hisaki <yhisaki31@gmail.com>
…from arc_lane_util (#7710) * fix(arc_lane_util): remove lane_id check from arc_lane_util Signed-off-by: Y.Hisaki <yhisaki31@gmail.com> * modify test_arc_lane_util.cpp Signed-off-by: Y.Hisaki <yhisaki31@gmail.com> --------- Signed-off-by: Y.Hisaki <yhisaki31@gmail.com>
Description
Currently, when checking the intersection of stop_line and path, it was checked if the lane_id of the intersection is the same as the one specified. However, this check is meaningless and may cause the following error. Therefore, the code to check the lane_id has been removed.
https://tier4.atlassian.net/browse/RT0-30839
How was this PR tested?
https://evaluation.ci.tier4.jp/evaluation/reports/6f5f6e7c-1d11-5ca3-b5cd-f89ac8fca216?project_id=prd_jt
Notes for reviewers
None.
Interface changes
None.
Effects on system behavior
None.