Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a6e86d3

Browse files
committedJun 6, 2024
fix pluggin problem
Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com>
1 parent fde9b2a commit a6e86d3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎control/autoware_control_validator/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ament_auto_add_library(autoware_control_validator_component SHARED
1616
)
1717
target_link_libraries(autoware_control_validator_component autoware_control_validator_helpers)
1818
rclcpp_components_register_node(autoware_control_validator_component
19-
PLUGIN "autoware_control_validator::ControlValidator"
19+
PLUGIN "autoware::control_validator::ControlValidator"
2020
EXECUTABLE autoware_control_validator_node
2121
)
2222

‎control/autoware_control_validator/include/autoware_control_validator/control_validator.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
namespace autoware::control_validator
3333
{
34-
using autoware::control_validator::msg::ControlValidatorStatus;
34+
using autoware_control_validator::msg::ControlValidatorStatus;
3535
using autoware_planning_msgs::msg::Trajectory;
3636
using autoware_planning_msgs::msg::TrajectoryPoint;
3737
using diagnostic_updater::DiagnosticStatusWrapper;

‎launch/tier4_control_launch/launch/control.launch.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ def launch_setup(context, *args, **kwargs):
384384
# control validator checker
385385
autoware_control_validator_component = ComposableNode(
386386
package="autoware_control_validator",
387-
plugin="autoware_control_validator::ControlValidator",
387+
plugin="autoware::control_validator::ControlValidator",
388388
name="autoware_control_validator",
389389
remappings=[
390390
("~/input/kinematics", "/localization/kinematic_state"),

0 commit comments

Comments
 (0)
Please sign in to comment.