Skip to content

Commit f12cc0c

Browse files
committed
Revert "workaround for MoveIt PlanningScene bug"
Fixed via moveit/moveit#1899. Please use *latest* master (if you do not use melodic builds). This reverts commit c44d0ca.
1 parent 8f56d4a commit f12cc0c

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

capabilities/src/execute_task_solution_capability.cpp

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -173,12 +173,7 @@ bool ExecuteTaskSolutionCapability::constructMotionPlan(const moveit_task_constr
173173
if (!planning_scene::PlanningScene::isEmpty(sub_traj.scene_diff)) {
174174
#endif
175175
ROS_DEBUG_STREAM_NAMED("ExecuteTaskSolution", "apply effect of " << description);
176-
bool result = context_->planning_scene_monitor_->newPlanningSceneMessage(sub_traj.scene_diff);
177-
#if MOVEIT_MASTER
178-
// HACK: workaround for https://github.com/ros-planning/moveit/issues/1835
179-
ros::Duration(0.1).sleep();
180-
#endif
181-
return result;
176+
return context_->planning_scene_monitor_->newPlanningSceneMessage(sub_traj.scene_diff);
182177
}
183178
return true;
184179
};

0 commit comments

Comments
 (0)