@@ -137,6 +137,10 @@ func (d *Deployment) Status() Status {
137
137
return d .status
138
138
}
139
139
140
+ func (d * Deployment ) IsStatusCheckCompleteOrCancelled () bool {
141
+ return d .done || d .statusCode == proto .StatusCode_STATUSCHECK_CONTEXT_CANCELLED
142
+ }
143
+
140
144
func (d * Deployment ) StatusMessage () string {
141
145
for _ , p := range d .pods {
142
146
if s := p .ActionableError (); s .ErrCode != proto .StatusCode_STATUSCHECK_SUCCESS {
@@ -146,10 +150,6 @@ func (d *Deployment) StatusMessage() string {
146
150
return d .status .String ()
147
151
}
148
152
149
- func (d * Deployment ) IsStatusCheckCompleteOrCancelled () bool {
150
- return d .done || d .statusCode == proto .StatusCode_STATUSCHECK_CONTEXT_CANCELLED
151
- }
152
-
153
153
func (d * Deployment ) MarkComplete () {
154
154
d .done = true
155
155
}
@@ -272,9 +272,8 @@ func (d *Deployment) fetchPods(ctx context.Context) error {
272
272
if ! found || originalPod .StatusUpdated (p ) {
273
273
d .status .changed = true
274
274
switch p .ActionableError ().ErrCode {
275
- case proto .StatusCode_STATUSCHECK_CONTAINER_CREATING :
276
- event .ResourceStatusCheckEventUpdated (p .String (), p .ActionableError ())
277
- case proto .StatusCode_STATUSCHECK_POD_INITIALIZING :
275
+ case proto .StatusCode_STATUSCHECK_CONTAINER_CREATING ,
276
+ proto .StatusCode_STATUSCHECK_POD_INITIALIZING :
278
277
event .ResourceStatusCheckEventUpdated (p .String (), p .ActionableError ())
279
278
default :
280
279
event .ResourceStatusCheckEventCompleted (p .String (), p .ActionableError ())
0 commit comments