Skip to content

Commit

Permalink
Merge pull request kubernetes#111784 from deads2k/fix-cleaner
Browse files Browse the repository at this point in the history
Revert "enforce strict alpha handling for API serving"
  • Loading branch information
k8s-ci-robot committed Aug 10, 2022
2 parents a38bb7e + 696e41a commit 518e0ac
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions staging/src/k8s.io/apiserver/pkg/server/deleted_kinds.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,7 @@ type ResourceExpirationEvaluator interface {
}

func NewResourceExpirationEvaluator(currentVersion apimachineryversion.Info) (ResourceExpirationEvaluator, error) {
ret := &resourceExpirationEvaluator{
// TODO https://github.com/kubernetes/kubernetes/issues/109799 set this back to false after beta is tagged.
strictRemovedHandlingInAlpha: true,
}
ret := &resourceExpirationEvaluator{}
if len(currentVersion.Major) > 0 {
currentMajor64, err := strconv.ParseInt(currentVersion.Major, 10, 32)
if err != nil {
Expand Down

0 comments on commit 518e0ac

Please sign in to comment.