Skip to content

Commit

Permalink
fix: wait for ECS hardware provision to run task
Browse files Browse the repository at this point in the history
  • Loading branch information
gumieri committed Aug 15, 2024
1 parent e4111fb commit daae382
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/task_definitions_run.go
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ func taskDefinitionsRunRun(cmd *cobra.Command, args []string) {
t.Must(err)

status := aws.StringValue(tasksStatus.Tasks[0].LastStatus)
if status != "PENDING" {
if status != "PENDING" && status != "PROVISIONING" {
break
}

Expand Down

0 comments on commit daae382

Please sign in to comment.