Skip to content

Commit

Permalink
fix(canary): fix Orchestration constructor in DeployCanary stage (#1585)
Browse files Browse the repository at this point in the history
  • Loading branch information
anotherchrisberry authored Aug 30, 2017
1 parent ce08d92 commit 688de4b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ class DeployCanaryStage extends ParallelDeployStage implements CloudProviderAwar
}.flatten()

def findImageCtx = [application: stage.execution.application, account: stage.context.baseline.account, cluster: stage.context.baseline.cluster, regions: regions, cloudProvider: stage.context.baseline.cloudProvider ?: 'aws']
Stage s = new Stage<>(new Orchestration(), "findImage", findImageCtx)
Stage s = new Stage<>(new Orchestration(stage.execution.application), "findImage", findImageCtx)
TaskResult result = findImage.execute(s)
try {
return result.context.amiDetails
Expand Down

0 comments on commit 688de4b

Please sign in to comment.