Skip to content

Commit aa54de0

Browse files
authored
Gracefully handle execution_type (#307)
In moveit_resources 0.8.1 the arg execution_type was renamed to fake_execution_type. To support both, Melodic and Noetic versions of moveit_resources, provide both name variants. Additionally, disable roslaunch's checking via pass_all_args="true".
1 parent 9ca8f5a commit aa54de0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

demo/test/pick_place.test

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
<?xml version="1.0"?>
22
<launch>
3-
<include file="$(find moveit_resources_panda_moveit_config)/launch/demo.launch">
3+
<include file="$(find moveit_resources_panda_moveit_config)/launch/demo.launch" pass_all_args="true">
44
<arg name="use_rviz" value="false" />
5-
<arg name="execution_type" value="last point" />
5+
<arg name="execution_type" value="last point" /> <!-- arg name in 0.8 -->
6+
<arg name="fake_execution_type" value="last point" /> <!-- arg name in 0.8.1 -->
67
<env name="LD_PRELOAD" value="$(optenv PRELOAD)" />
78
</include>
89

0 commit comments

Comments
 (0)