Matthew Seligson
05/26/2022, 6:44 PMKevin Kho
Matthew Seligson
05/26/2022, 6:51 PMKevin Kho
Marvin
05/26/2022, 6:54 PMMatthew Seligson
05/26/2022, 6:58 PMKevin Kho
start_tasks
parameter. I joined Prefect around 0.14.12 and nothing like that rings a bellMatthew Seligson
05/26/2022, 8:24 PMKevin Kho
from prefect import Flow, task
import prefect
@task
def abc():
<http://prefect.context.logger.info|prefect.context.logger.info>("I RAN")
return 1
@task
def bcd():
<http://prefect.context.logger.info|prefect.context.logger.info>("I RAN")
return 1
@task
def cde():
<http://prefect.context.logger.info|prefect.context.logger.info>("I RAN")
return 1
with Flow("resukt") as flow:
abc()
bcd()
cde()
and I ran it and it succeeded. Marked bcd
and cde
as failed. Restarted on the flow run page and it kicked off again. Images of logs below. One shows the restart and one shows the re-run.Matthew Seligson
05/26/2022, 9:15 PMKevin Kho
Matthew Seligson
05/26/2022, 9:44 PMKevin Kho
Matthew Seligson
05/26/2022, 9:48 PMKevin Kho
Matthew Seligson
05/26/2022, 9:51 PMKevin Kho
Matthew Seligson
05/26/2022, 10:01 PMKevin Kho
Matthew Seligson
05/27/2022, 12:00 AMKevin Kho
Matthew Seligson
06/01/2022, 12:52 PMKevin Kho
Matthew Seligson
06/01/2022, 2:59 PMKevin Kho
Matthew Seligson
06/01/2022, 5:02 PMKevin Kho
Matthew Seligson
06/01/2022, 5:05 PMKevin Kho
Matthew Seligson
06/01/2022, 7:14 PM