source_creator
07/19/2019, 9:05 PMChris White
UnionSchedule
work for your needs? https://docs.prefect.io/api/unreleased/schedules.html#unionschedule
You’d probably have to write some custom logic inside your task to handle the result differently for each schedulesource_creator
07/19/2019, 9:45 PMChris White
source_creator
07/19/2019, 10:01 PMUnionSchedule
, but I am stuckChris White
@task
def get_todays_date():
today = prefect.context.get("today")
print(today)
return today
source_creator
07/19/2019, 10:26 PMsource_creator
07/19/2019, 10:40 PMIntervalSchedule
Chris White
source_creator
07/20/2019, 3:21 PMstart_date
passed to IntervalSchedule
was the same as scheduled_start_time
from the context in the TaskChris White
Marvin
08/05/2019, 9:44 PM