mirror of https://github.com/kubernetes/kops.git
Update pkg/instancegroups/rollingupdate.go
Co-authored-by: Ole Markus With <olemarkus@gmail.com>
This commit is contained in:
parent
2bd5403f37
commit
4eb455c6b9
|
|
@ -243,7 +243,7 @@ func sortGroups(groupMap map[string]*cloudinstances.CloudInstanceGroup) []string
|
|||
// For example, if a cluster is unable to be validated by the deadline, then it
|
||||
// is unlikely that it will validate on the next instance roll, so an early exit as a
|
||||
// warning to the user is more appropriate.
|
||||
func exitableError(err error) bool {
|
||||
func isExitableError(err error) bool {
|
||||
_, ok := err.(*ValidationTimeoutError)
|
||||
return ok
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue