Skip to content

Commit

Permalink
Revert "enforce strict alpha handling for API serving"
Browse files Browse the repository at this point in the history
This reverts commit 233e0cb.
  • Loading branch information
deads2k committed Aug 10, 2022
1 parent a38bb7e commit 696e41a
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 696e41a

Please sign in to comment.