Behavior Planning container crashes, state stuck at PLANNING #2977
-
Hi, I pulled the latest commit and i am facing an issue where the state is stuck at planning when a goal is sent. The mission_planner ad_api commit might have caused this? No route appears It seems that mission_planner's required input Launching planning.launch.xml on its own gives this error: The route appears, but state is still at PLANNING Interestingly, looking at the logs from autoware.launch.xml: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
I am not able to reproduce the issue with the latest version of Autoware. If the state is stuck at My guess is that there is an issue in your current workspace. Maybe you need to fully rebuild the code ( |
Beta Was this translation helpful? Give feedback.
I am not able to reproduce the issue with the latest version of Autoware.
If the state is stuck at
PLANNING
, it means the trajectory is not being sent to the controller. If one of the planner is crashing like you reported this is the expected behavior.My guess is that there is an issue in your current workspace. Maybe you need to fully rebuild the code (
rm install build -rf
before building again), or maybe some of the repositories are outdated (rm src/* -rf && vcs import src < autoware.repos
before rebuilding).