We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcc652b commit c44d0caCopy full SHA for c44d0ca
capabilities/src/execute_task_solution_capability.cpp
@@ -173,7 +173,12 @@ bool ExecuteTaskSolutionCapability::constructMotionPlan(const moveit_task_constr
173
if (!planning_scene::PlanningScene::isEmpty(sub_traj.scene_diff)) {
174
#endif
175
ROS_DEBUG_STREAM_NAMED("ExecuteTaskSolution", "apply effect of " << description);
176
- return context_->planning_scene_monitor_->newPlanningSceneMessage(sub_traj.scene_diff);
+ 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;
182
}
183
return true;
184
};
0 commit comments