Skip to content

Commit

Permalink
Move argument out of group.
Browse files Browse the repository at this point in the history
The manager name argument should not be
inside the group itself. Having it in this
location causes an error where it cannot be
assigned via launch file (command line
assignment seems to work fine, so presumably
this is a bug in roslaunch). Moving the argument
out of the group appears to work fine in both
launch files and via command line.
  • Loading branch information
kevincwells committed Dec 22, 2016
1 parent b88e8be commit 3ac6854
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion launch/person_sample.launch
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
<arg name="subscribe_rate" default="30" />
<arg name="detection_rate" default="30" />
<arg name="tracking_rate" default="30" />
<arg name="manager" default="manager" />

<group ns="$(arg camera)">
<arg name="manager" default="manager" />
<!-- Load manager -->
<node pkg="nodelet" type="nodelet" name="$(arg manager)" args="manager" output="screen"/>

Expand Down

0 comments on commit 3ac6854

Please sign in to comment.