Skip to content

Commit e5ba31c

Browse files
authored
fix move_group_node crash during initialization (#906)
- change planning plugin to a list of plugins, according to the change introduced in 12/2023 in moveit rolling. - split request_adapters to request_adapters and response_adapters, according to the refactor of planning pipeline introduced in 10/2023 in moveit rolling.
1 parent 8fb6389 commit e5ba31c

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

ur_moveit_config/launch/ur_moveit.launch.py

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -156,9 +156,18 @@ def launch_setup(context, *args, **kwargs):
156156
# Planning Configuration
157157
ompl_planning_pipeline_config = {
158158
"move_group": {
159-
"planning_plugin": "ompl_interface/OMPLPlanner",
160-
"request_adapters": """default_planner_request_adapters/AddTimeOptimalParameterization default_planner_request_adapters/FixWorkspaceBounds default_planner_request_adapters/FixStartStateBounds default_planner_request_adapters/FixStartStateCollision default_planner_request_adapters/FixStartStatePathConstraints""",
161-
"start_state_max_bounds_error": 0.1,
159+
"planning_plugins": ["ompl_interface/OMPLPlanner"],
160+
"request_adapters": [
161+
"default_planning_request_adapters/ResolveConstraintFrames",
162+
"default_planning_request_adapters/ValidateWorkspaceBounds",
163+
"default_planning_request_adapters/CheckStartStateBounds",
164+
"default_planning_request_adapters/CheckStartStateCollision",
165+
],
166+
"response_adapters": [
167+
"default_planning_response_adapters/AddTimeOptimalParameterization",
168+
"default_planning_response_adapters/ValidateSolution",
169+
"default_planning_response_adapters/DisplayMotionPath",
170+
],
162171
}
163172
}
164173
ompl_planning_yaml = load_yaml("ur_moveit_config", "config/ompl_planning.yaml")

0 commit comments

Comments
 (0)