Skip to content

Commit

Permalink
Fix for not allowed empty string as default parameters in launch files
Browse files Browse the repository at this point in the history
  • Loading branch information
Myzhar committed Feb 15, 2022
1 parent 06fdcc7 commit 25382ef
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion zed_display_rviz2/launch/display_zed.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def generate_launch_description():

declare_svo_path_cmd = DeclareLaunchArgument(
'svo_path',
default_value='',
default_value='live', # 'live' used as patch for launch files not allowing empty strings as default parameters
description='Path to an input SVO file. Note: overrides the parameter `general.svo_file` in `common.yaml`.')

# Launch parameters
Expand Down
2 changes: 1 addition & 1 deletion zed_display_rviz2/launch/display_zed2.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def generate_launch_description():

declare_svo_path_cmd = DeclareLaunchArgument(
'svo_path',
default_value='',
default_value='live', # 'live' used as patch for launch files not allowing empty strings as default parameters
description='Path to an input SVO file. Note: overrides the parameter `general.svo_file` in `common.yaml`.')

# Launch parameters
Expand Down
2 changes: 1 addition & 1 deletion zed_display_rviz2/launch/display_zed2i.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def generate_launch_description():

declare_svo_path_cmd = DeclareLaunchArgument(
'svo_path',
default_value='',
default_value='live', # 'live' used as patch for launch files not allowing empty strings as default parameters
description='Path to an input SVO file. Note: overrides the parameter `general.svo_file` in `common.yaml`.')

# Launch parameters
Expand Down
2 changes: 1 addition & 1 deletion zed_display_rviz2/launch/display_zedm.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def generate_launch_description():

declare_svo_path_cmd = DeclareLaunchArgument(
'svo_path',
default_value='',
default_value='live', # 'live' used as patch for launch files not allowing empty strings as default parameters
description='Path to an input SVO file. Note: overrides the parameter `general.svo_file` in `common.yaml`.')

# Launch parameters
Expand Down

0 comments on commit 25382ef

Please sign in to comment.