Skip to content

Commit

Permalink
fix(euclidean_cluster): fix launch condition
Browse files Browse the repository at this point in the history
Signed-off-by: kminoda <[email protected]>
  • Loading branch information
kminoda committed Jan 31, 2024
1 parent a8b0d46 commit 24f6e50
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def load_composable_node_param(param_path):

target_container = (
LaunchConfiguration("pointcloud_container_name")
if IfCondition(LaunchConfiguration("use_pointcloud_container"))
if IfCondition(LaunchConfiguration("use_pointcloud_container")).evaluate(context)
else container
)

Expand Down

0 comments on commit 24f6e50

Please sign in to comment.