Skip to content

Commit

Permalink
fix log message
Browse files Browse the repository at this point in the history
  • Loading branch information
fujiwara committed Jul 1, 2021
1 parent 9649038 commit 76f739d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions run.go
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ func (d *App) waitTask(ctx context.Context, task *ecs.Task, untilRunning bool) e
}

id := arnToName(*task.TaskArn)
d.Log(fmt.Sprintf("Waiting for task ID %s running", id))
d.Log(fmt.Sprintf("Waiting for task ID %s until running", id))
if err := d.ecs.WaitUntilTasksRunningWithContext(
ctx,
d.DescribeTasksInput(task),
Expand All @@ -241,7 +241,7 @@ func (d *App) waitTask(ctx context.Context, task *ecs.Task, untilRunning bool) e
); err != nil {
return err
}
d.Log(fmt.Sprintf("Task ID %s is until running", id))
d.Log(fmt.Sprintf("Task ID %s is running", id))
if untilRunning {
return nil
}
Expand Down

0 comments on commit 76f739d

Please sign in to comment.