Skip to content

Commit

Permalink
fix pluggin problem
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Sanchez <[email protected]>
  • Loading branch information
danielsanchezaran committed Jun 6, 2024
1 parent fde9b2a commit a6e86d3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion control/autoware_control_validator/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ ament_auto_add_library(autoware_control_validator_component SHARED
)
target_link_libraries(autoware_control_validator_component autoware_control_validator_helpers)
rclcpp_components_register_node(autoware_control_validator_component
PLUGIN "autoware_control_validator::ControlValidator"
PLUGIN "autoware::control_validator::ControlValidator"
EXECUTABLE autoware_control_validator_node
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

namespace autoware::control_validator
{
using autoware::control_validator::msg::ControlValidatorStatus;
using autoware_control_validator::msg::ControlValidatorStatus;
using autoware_planning_msgs::msg::Trajectory;
using autoware_planning_msgs::msg::TrajectoryPoint;
using diagnostic_updater::DiagnosticStatusWrapper;
Expand Down
2 changes: 1 addition & 1 deletion launch/tier4_control_launch/launch/control.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ def launch_setup(context, *args, **kwargs):
# control validator checker
autoware_control_validator_component = ComposableNode(
package="autoware_control_validator",
plugin="autoware_control_validator::ControlValidator",
plugin="autoware::control_validator::ControlValidator",
name="autoware_control_validator",
remappings=[
("~/input/kinematics", "/localization/kinematic_state"),
Expand Down

0 comments on commit a6e86d3

Please sign in to comment.