restore status in addition to reason as progress message

Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
This commit is contained in:
Nicolas De Loof 2020-10-06 14:05:08 +02:00
parent 5c0a953f7e
commit e8507893ee
No known key found for this signature in database
GPG Key ID: 9858809D6F8F6E7E
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 {