소스 검색

Merge pull request #732 from docker/status_reason

restore status in addition to reason as progress message
Guillaume Tardif 5 년 전
부모
커밋
0cea91c555
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      ecs/wait.go

+ 1 - 1
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 {