Merge pull request #732 from docker/status_reason

restore status in addition to reason as progress message
This commit is contained in:
Guillaume Tardif 2020-10-06 14:22:13 +02:00 committed by GitHub
commit 0cea91c555
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ func (b *ecsAPIService) WaitStackCompletion(ctx context.Context, name string, op
w.Event(progress.Event{
ID: resource,
Status: progressStatus,
StatusText: reason,
StatusText: fmt.Sprintf("%s %s", status, reason),
})
}
if operation != stackCreate || stackErr != nil {