Nicolas van de Walle
07/08/2020, 10:13 AMjosh
07/08/2020, 11:29 AMfrom prefect import Client
c = Client()
info = c.get_flow_run_info(id_from_created_flow_run)
state = info.state
# ^ do something with this prefect State object
# if not what you want, sleep for a bit and query again
Nicolas van de Walle
07/08/2020, 11:31 AMjosh
07/08/2020, 11:33 AMChris White
07/08/2020, 4:46 PM