From e8507893ee128152236b8da27bdca3524b9537a4 Mon Sep 17 00:00:00 2001 From: Nicolas De Loof Date: Tue, 6 Oct 2020 14:05:08 +0200 Subject: [PATCH] restore status in addition to reason as progress message Signed-off-by: Nicolas De Loof --- ecs/wait.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ecs/wait.go b/ecs/wait.go index 3df32c2be..60b8bef9a 100644 --- a/ecs/wait.go +++ b/ecs/wait.go @@ -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 {