Skip to content

Commit 3bcad14

Browse files
author
Daniel Kang
authored
Merge pull request #29 from coldbrewcloud/appname
App status and delete without configuration file
2 parents f305584 + e9f2fbe commit 3bcad14

6 files changed

Lines changed: 240 additions & 137 deletions

File tree

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.1
1+
1.4.0

aws/ecs/client.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,9 @@ func (c *Client) UpdateTaskDefinition(taskDefinitionName, image, taskContainerNa
126126
return res.TaskDefinition, nil
127127
}
128128

129-
func (c *Client) RetrieveTaskDefinition(taskDefinitionName string) (*_ecs.TaskDefinition, error) {
129+
func (c *Client) RetrieveTaskDefinition(taskDefinitionNameOrARN string) (*_ecs.TaskDefinition, error) {
130130
params := &_ecs.DescribeTaskDefinitionInput{
131-
TaskDefinition: _aws.String(taskDefinitionName),
131+
TaskDefinition: _aws.String(taskDefinitionNameOrARN),
132132
}
133133

134134
res, err := c.svc.DescribeTaskDefinition(params)

0 commit comments

Comments
 (0)