From 9a10e9650d8756953994ce2cfcb236c23d6cd9b5 Mon Sep 17 00:00:00 2001 From: Mike Lang Date: Mon, 28 Nov 2016 09:16:19 -0800 Subject: [PATCH] Fix the one instance of "make" that is actually apparently required --- probe/awsecs/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/probe/awsecs/client.go b/probe/awsecs/client.go index cac336603..d016362f3 100644 --- a/probe/awsecs/client.go +++ b/probe/awsecs/client.go @@ -109,7 +109,7 @@ func (c ecsClient) getTaskDeployments(taskArns []string) (map[string]string, err // returns a map from task ARNs to service names func (c ecsClient) getTaskServices(taskArns []string) (map[string]string, error) { - deploymentMapChan := chan map[string]string{} + deploymentMapChan := make(chan map[string]string) go func() { deploymentMapChan <- c.getDeploymentMap() }()