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
// returns true in those slow cases because it is still only a suspicion
591
590
iflen(exceeded) >0&&!machineConfig {
592
-
returnuErr.Reason, fmt.Sprintf("%swaiting on %s over 30 minutes which is longer than expected", slowCOUpdatePrefix, strings.Join(exceeded, ", ")), true
591
+
returnslowCOUpdatePrefix+uErr.Reason, fmt.Sprintf("waiting on %s over 30 minutes which is longer than expected", strings.Join(exceeded, ", ")), true
593
592
}
594
593
iflen(exceeded) >0&&machineConfig {
595
-
returnuErr.Reason, fmt.Sprintf("%swaiting on %s over 30 minutes and machine-config over 90 minutes which is longer than expected", slowCOUpdatePrefix, strings.Join(exceeded, ", ")), true
594
+
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
596
595
}
597
596
iflen(exceeded) ==0&&machineConfig {
598
-
returnuErr.Reason, fmt.Sprintf("%swaiting on machine-config over 90 minutes which is longer than expected", slowCOUpdatePrefix), true
597
+
returnslowCOUpdatePrefix+uErr.Reason, "waiting on machine-config over 90 minutes which is longer than expected", true
599
598
}
600
599
returnuErr.Reason, fmt.Sprintf("waiting on %s", strings.Join(names, ", ")), true
0 commit comments