From ea6d35a9274a2ee24ca698f2956ba89775825661 Mon Sep 17 00:00:00 2001 From: Nicolas De Loof Date: Thu, 23 Apr 2020 16:19:47 +0200 Subject: [PATCH] Fix minor issue after merge conflit resolution Signed-off-by: Nicolas De Loof --- ecs/pkg/amazon/up.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ecs/pkg/amazon/up.go b/ecs/pkg/amazon/up.go index 8b6c6da6..2dbfd306 100644 --- a/ecs/pkg/amazon/up.go +++ b/ecs/pkg/amazon/up.go @@ -17,7 +17,7 @@ func (c *client) ComposeUp(project *compose.Project, loadBalancerArn *string) er if !ok { c.CreateCluster() } - _, err := c.CF.DescribeStacks(&cloudformation.DescribeStacksInput{ + _, err = c.CF.DescribeStacks(&cloudformation.DescribeStacksInput{ StackName: aws.String(project.Name), }) if err == nil {