-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use optional parameters in actions (#601)
Signed-off-by: Carlos Agüero <[email protected]>
- Loading branch information
Showing
3 changed files
with
14 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,7 @@ | ||
<launch> | ||
<arg name="name" /> | ||
<arg name="config_file" default="" /> | ||
<arg name="container_name" default="ros_gz_container" /> | ||
<arg name="namespace" default="" /> | ||
<arg name="use_composition" default="True" /> | ||
<arg name="use_respawn" default="False" /> | ||
<arg name="log_level" default="info" /> | ||
<arg name="world_sdf_file" default="empty.sdf" /> | ||
<arg name="world_sdf_string" default="" /> | ||
<gz_server | ||
world_sdf_file="$(var world_sdf_file)" | ||
world_sdf_string="$(var world_sdf_string)" | ||
container_name="$(var container_name)" | ||
use_composition="$(var use_composition)"> | ||
</gz_server> | ||
<gz_server | ||
world_sdf_file="empty.sdf" /> | ||
<ros_gz_bridge | ||
name="$(var name)" | ||
config_file="$(var config_file)" | ||
container_name="$(var container_name)" | ||
namespace="$(var namespace)" | ||
use_composition="$(var use_composition)" | ||
use_respawn="$(var use_respawn)" | ||
log_level="$(var log_level)"> | ||
</ros_gz_bridge> | ||
name="bridge" | ||
config_file="/home/caguero/ros_gz_ws/src/ros_gz/ros_gz_bridge/test/config/full.yaml" /> | ||
</launch> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters