You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pkg/cvo/status.go
+3-3
Original file line number
Diff line number
Diff line change
@@ -598,13 +598,13 @@ func convertErrorToProgressingForUpdateEffectNone(uErr *payload.UpdateError, now
598
598
}
599
599
// returns true in those slow cases because it is still only a suspicion
600
600
iflen(exceeded) >0&&!machineConfig {
601
-
returnslowCOUpdatePrefix+uErr.Reason, fmt.Sprintf("waiting on %s over 30 minutes which is longer than expected", strings.Join(exceeded, ", ")), true
601
+
returnfmt.Sprintf("%s%s", slowCOUpdatePrefix, uErr.Reason), fmt.Sprintf("waiting on %s over 30 minutes which is longer than expected", strings.Join(exceeded, ", ")), true
602
602
}
603
603
iflen(exceeded) >0&&machineConfig {
604
-
returnslowCOUpdatePrefix+uErr.Reason, fmt.Sprintf("waiting on %s over 30 minutes and machine-config over 90 minutes which is longer than expected", strings.Join(exceeded, ", ")), true
604
+
returnfmt.Sprintf("%s%s", slowCOUpdatePrefix, uErr.Reason), fmt.Sprintf("waiting on %s over 30 minutes and machine-config over 90 minutes which is longer than expected", strings.Join(exceeded, ", ")), true
605
605
}
606
606
iflen(exceeded) ==0&&machineConfig {
607
-
returnslowCOUpdatePrefix+uErr.Reason, "waiting on machine-config over 90 minutes which is longer than expected", true
607
+
returnfmt.Sprintf("%s%s", slowCOUpdatePrefix, uErr.Reason), "waiting on machine-config over 90 minutes which is longer than expected", true
608
608
}
609
609
returnuErr.Reason, fmt.Sprintf("waiting on %s", strings.Join(names, ", ")), true
0 commit comments