Hey, is there a way to retrieve the `flow_run_id` (not the `flow_id`!) from a `RunContext`?
n
Hey, is there a way to retrieve the
flow_run_id
(not the
flow_id
!) from a
RunContext
?
t
I believe this is the way to get the flow run id:
Copy code
flow_run_id = prefect.context.get_run_context().flow_run.dict().get("id")
n
great, thanks!