-
Notifications
You must be signed in to change notification settings - Fork 146
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Inconsistent syntax for arg tag in XML launch #720
Comments
I'm experiencing the same under Ubuntu 24.04 & ROS2 Jazzy |
This is still the case today in all distros. I was also surprised by this when I worked on ros2/ros2_documentation#5104. The simple answer is that the code indeed expects launch/launch/launch/actions/include_launch_description.py Lines 91 to 101 in 6fcc79e
SetLaunchConfiguration actions from those, which are equivalent to the frontend's let action, not arg (DeclareLaunchArgument ): launch/launch/launch/actions/include_launch_description.py Lines 187 to 188 in 6fcc79e
XML<launch>
<let name="background_r" value="200"/>
<include file="$(find-pkg-share launch_tutorial)/launch/example_substitutions_launch.xml">
<arg name="turtlesim_ns" value="turtlesim2" />
<arg name="use_provided_red" value="True" />
<arg name="new_background_r" value="$(var background_r)" />
</include>
</launch> YAMLlaunch:
- let:
name: 'background_r'
value: '200'
- include:
file: '$(find-pkg-share launch_tutorial)/launch/example_substitutions_launch.yaml'
arg:
- name: 'turtlesim_ns'
value: 'turtlesim2'
- name: 'use_provided_red'
value: 'True'
- name: 'new_background_r'
value: '$(var background_r)' Now as to why it does this, I believe it's because ROS 1's launch XML I think it could probably simply also accept |
I've implemented that in #848 |
Bug report
Required Info:
Steps to reproduce issue
Example section of XML launch file for starting Gazebo simulator
Expected behavior
According to the launch migration guide,
<arg>
should be used withdefault
and<let>
should be used withvalue
. However, Whenarg
is nested under aninclude
tag it is necessary to use thevalue
instead. You can see in the example howarg
has two different syntaxes, depending on the context.Actual behavior
Attempting to use the suggested syntax triggers the following error:
The text was updated successfully, but these errors were encountered: