Skip to content

Commit

Permalink
Merge pull request #279 from openshift-cherrypick-robot/cherry-pick-2…
Browse files Browse the repository at this point in the history
…76-to-release-4.14

[release-4.14] OCPBUGS-30015: fix: convert `continue` field between v1beta1 and v1alpha1
  • Loading branch information
openshift-merge-bot[bot] committed Mar 1, 2024
2 parents 73729ed + 444cde1 commit a4b845a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions pkg/apis/monitoring/v1beta1/conversion_from.go
Expand Up @@ -32,6 +32,7 @@ func convertRouteFrom(in *v1alpha1.Route) (*Route, error) {

out := &Route{
Receiver: in.Receiver,
Continue: in.Continue,
GroupBy: in.GroupBy,
GroupWait: in.GroupWait,
GroupInterval: in.GroupInterval,
Expand Down
1 change: 1 addition & 0 deletions pkg/apis/monitoring/v1beta1/conversion_to.go
Expand Up @@ -32,6 +32,7 @@ func convertRouteTo(in *Route) (*v1alpha1.Route, error) {

out := &v1alpha1.Route{
Receiver: in.Receiver,
Continue: in.Continue,
GroupBy: in.GroupBy,
GroupWait: in.GroupWait,
GroupInterval: in.GroupInterval,
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a4b845a

Please sign in to comment.