Ben Collier
06/10/2021, 5:17 AMclient.get_flow_run_info(flow_run_id)
with a flow run id in the format “c2686800-3c0f-4b67-83b2-f85fa6fd6773”
I’m getting the following:
'message': 'invalid input syntax for type uuid: "c2686800-3c0f-4b67-83b2-f85fa6"'
I assume I’m doing something fairly stupid - could someone explain why the UUID is in the wrong format?Ben Muller
06/10/2021, 5:57 AMnicholas
In [1]: import prefect
In [2]: id = "c2686800-3c0f-4b67-83b2-f85fa6fd6773"
In [3]: c = prefect.Client()
In [4]: info = c.get_flow_run_info(flow_run_id=id)
Ben Collier
06/10/2021, 7:29 AM