Skip to content

Commit

Permalink
safe check for regions in delete lb task (spinnaker#1119)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpeach authored Jan 13, 2017
1 parent a7bb295 commit 8b726c7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class DeleteLoadBalancerTask extends AbstractCloudProviderAwareTask implements T
"notification.type" : "deleteloadbalancer",
"kato.last.task.id" : taskId,
"delete.name" : stage.context.loadBalancerName,
"delete.regions" : stage.context.regions.join(','),
"delete.regions" : stage.context.regions?.join(',') ?: [],
"delete.account.name": account
]
new DefaultTaskResult(ExecutionStatus.SUCCEEDED, outputs)
Expand Down

0 comments on commit 8b726c7

Please sign in to comment.