Newskooler
09/30/2020, 2:13 PMjosh
09/30/2020, 2:19 PMintended_backfill_start_time
and accessing it as backfill_time
in the task? That looks to be a typo in the answerNewskooler
09/30/2020, 2:25 PMcurrent_time = prefect.context.get("intended_backfill_start_time") or prefect.context.get("scheduled_start_time")
and then have this unchanged like so flow.run(context={"intended_backfill_start_time": "2020-09-01"}) # will use old timestamp
(it works).current_time
until today, right?josh
09/30/2020, 2:27 PMNewskooler
09/30/2020, 2:28 PMjosh
09/30/2020, 2:30 PMflow.run
you won’t see them in the UI, that’s for local in process runs. You’re going to want to use the client create_flow_run
in order to create the flow run in the backendNewskooler
09/30/2020, 2:32 PMjosh
09/30/2020, 2:33 PMNewskooler
09/30/2020, 2:34 PM