source_creator
07/19/2019, 9:05 PMChris White
07/19/2019, 9:35 PMUnionSchedule
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
07/19/2019, 9:47 PMsource_creator
07/19/2019, 10:01 PMUnionSchedule
, but I am stuckChris White
07/19/2019, 10:02 PM@task
def get_todays_date():
today = prefect.context.get("today")
print(today)
return today
source_creator
07/19/2019, 10:26 PMIntervalSchedule
Chris White
07/19/2019, 10:46 PMsource_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
08/05/2019, 9:44 PMMarvin
08/05/2019, 9:44 PM