Skip to content

Commit 25382ef

Browse files
committed
Fix for not allowed empty string as default parameters in launch files
1 parent 06fdcc7 commit 25382ef

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

zed_display_rviz2/launch/display_zed.launch.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def generate_launch_description():
122122

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

128128
# Launch parameters

zed_display_rviz2/launch/display_zed2.launch.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def generate_launch_description():
122122

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

128128
# Launch parameters

zed_display_rviz2/launch/display_zed2i.launch.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def generate_launch_description():
122122

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

128128
# Launch parameters

zed_display_rviz2/launch/display_zedm.launch.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def generate_launch_description():
122122

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

128128
# Launch parameters

0 commit comments

Comments
 (0)