vinoth paari
02/09/2022, 7:50 AMKevin Kho
create_flow_run
takes a idempotency_key
. You need to supply different ones to each call to spin a new flow run. The same key does not trigger a new flow runvinoth paari
02/09/2022, 7:56 AMKevin Kho
create_flow_run.run(…, idempotency_key=str(datetime.datetime.now()))
or something like that so it will always be unique during the loopvinoth paari
02/09/2022, 8:00 AM