-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(backend): modelToCRDTrigger was not including periodic schedule c…
…orrectly (#11475) * fix(backend): modelToCRDTrigger was not including periodic schedule correctly Signed-off-by: Helber Belmiro <[email protected]> * Added copyright headers Signed-off-by: Helber Belmiro <[email protected]> * Fixed IsEmpty Signed-off-by: Helber Belmiro <[email protected]> --------- Signed-off-by: Helber Belmiro <[email protected]>
- Loading branch information
Showing
4 changed files
with
70 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// Copyright 2024 The Kubeflow Authors | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
package model | ||
|
||
type CronSchedule struct { | ||
// Time at which scheduling starts. | ||
// If no start time is specified, the StartTime is the creation time of the schedule. | ||
CronScheduleStartTimeInSec *int64 `gorm:"column:CronScheduleStartTimeInSec;"` | ||
|
||
// Time at which scheduling ends. | ||
// If no end time is specified, the EndTime is the end of time. | ||
CronScheduleEndTimeInSec *int64 `gorm:"column:CronScheduleEndTimeInSec;"` | ||
|
||
// Cron string describing when a workflow should be created within the | ||
// time interval defined by StartTime and EndTime. | ||
Cron *string `gorm:"column:Schedule;"` | ||
} | ||
|
||
func (c CronSchedule) IsEmpty() bool { | ||
return (c.CronScheduleStartTimeInSec == nil || *c.CronScheduleStartTimeInSec == 0) && | ||
(c.CronScheduleEndTimeInSec == nil || *c.CronScheduleEndTimeInSec == 0) && | ||
(c.Cron == nil || *c.Cron == "") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// Copyright 2024 The Kubeflow Authors | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
package model | ||
|
||
type PeriodicSchedule struct { | ||
// Time at which scheduling starts. | ||
// If no start time is specified, the StartTime is the creation time of the schedule. | ||
PeriodicScheduleStartTimeInSec *int64 `gorm:"column:PeriodicScheduleStartTimeInSec;"` | ||
|
||
// Time at which scheduling ends. | ||
// If no end time is specified, the EndTime is the end of time. | ||
PeriodicScheduleEndTimeInSec *int64 `gorm:"column:PeriodicScheduleEndTimeInSec;"` | ||
|
||
// Interval describing when a workflow should be created within the | ||
// time interval defined by StartTime and EndTime. | ||
IntervalSecond *int64 `gorm:"column:IntervalSecond;"` | ||
} | ||
|
||
func (p PeriodicSchedule) IsEmpty() bool { | ||
return (p.PeriodicScheduleStartTimeInSec == nil || *p.PeriodicScheduleStartTimeInSec == 0) && | ||
(p.PeriodicScheduleEndTimeInSec == nil || *p.PeriodicScheduleEndTimeInSec == 0) && | ||
(p.IntervalSecond == nil || *p.IntervalSecond == 0) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters