Skip to content

Commit

Permalink
fix(autoware_behavior_path_planner_common) : Fixed return handling of…
Browse files Browse the repository at this point in the history
… canLaunchNewModule() to PR original (autowarefoundation#8117).

Signed-off-by: k-hazama-esol <[email protected]>
  • Loading branch information
k-hazama-esol committed Mar 3, 2025
1 parent 15be36d commit ba241f4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ class SceneModuleManagerInterface
});
}

bool canLaunchNewModule() const { return observers_.size() < config_.max_module_size; }
bool canLaunchNewModule() const { return observers_.empty(); }

virtual bool isSimultaneousExecutableAsApprovedModule() const
{
Expand Down

0 comments on commit ba241f4

Please sign in to comment.