File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -152,16 +152,16 @@ func (w *WaitTask) startInner(taskContext *TaskContext) {
152152 pending := object.ObjMetadataSet {}
153153 for _ , id := range w .Ids {
154154 switch {
155- case w .changedUID (taskContext , id ):
156- // replaced
157- w .handleChangedUID (taskContext , id )
158155 case w .skipped (taskContext , id ):
159156 err := taskContext .InventoryManager ().SetSkippedReconcile (id )
160157 if err != nil {
161158 // Object never applied or deleted!
162159 klog .Errorf ("Failed to mark object as skipped reconcile: %v" , err )
163160 }
164161 w .sendEvent (taskContext , id , event .ReconcileSkipped )
162+ case w .changedUID (taskContext , id ):
163+ // replaced
164+ w .handleChangedUID (taskContext , id )
165165 case w .reconciledByID (taskContext , id ):
166166 err := taskContext .InventoryManager ().SetSuccessfulReconcile (id )
167167 if err != nil {
You can’t perform that action at this time.
0 commit comments