Skip to content

Commit

Permalink
Merge pull request #275 from simonpasquier/OCPBUGS-28251
Browse files Browse the repository at this point in the history
OCPBUGS-28251: fix: convert `continue` field between v1beta1 and v1alpha1
  • Loading branch information
openshift-merge-bot[bot] committed Feb 7, 2024
2 parents 39566f5 + 11135a1 commit 5e7d0af
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 5e7d0af

Please sign in to comment.