Fix the one instance of "make" that is actually apparently required

This commit is contained in:
Mike Lang
2016-11-28 09:16:19 -08:00
parent b06fee8c0f
commit 9a10e9650d

View File

@@ -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()
}()