Hey there! What is the difference between using t...
# prefect-server
p
Hey there! What is the difference between using the
client.create_flow_run(flow_id, parameters)
and
flow.run(parameters)
. Are they equivalent? Would the
flow.run
connect to the client and run the latest version of the flow?
a
Client triggers a backend flow run (running on your agent), while
flow.run()
triggers a local run on your local development machine
1
p
Thank you @Anna Geller!