Vadym Dytyniak
09/20/2022, 12:41 PMpydantic.error_wrappers.ValidationError: 9 validation errors for Deployment
schedule -> interval
field required (type=value_error.missing)
schedule -> calendar_id
extra fields not permitted (type=value_error.extra)
schedule -> run_times
extra fields not permitted (type=value_error.extra)
schedule -> cron
field required (type=value_error.missing)
schedule -> calendar_id
extra fields not permitted (type=value_error.extra)
schedule -> run_times
extra fields not permitted (type=value_error.extra)
schedule -> rrule
field required (type=value_error.missing)
schedule -> calendar_id
extra fields not permitted (type=value_error.extra)
schedule -> run_times
extra fields not permitted (type=value_error.extra)
Christopher Boyd
09/20/2022, 1:28 PMCron
is most appropriate for users who are already familiar with cron
from previous use.
• Interval
is best suited for deployments that need to run at some consistent cadence that isn’t related to absolute time.
• RRule
is best suited for deployments that rely on calendar logic for simple recurring schedules, irregular intervals, exclusions, or day-of-month adjustments.
Do these not cover the scenario you are trying to achieve?Vadym Dytyniak
09/20/2022, 1:31 PMAnna Geller
Vadym Dytyniak
09/20/2022, 5:49 PMRDATE:20220920T200000Z,20220921T133000Z
but doesn't work, do not see scheduled flow runsAnna Geller