File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -404,9 +404,12 @@ def execute_process(
404404 processor = self .get_processor (process_id )
405405 # https://docs.prefect.io/v3/how-to-guides/deployments/run-deployments#run-a-deployment-from-python
406406 if chosen_mode == ProcessExecutionMode .sync_execute :
407- # if it's a BaseProcessor type, run our locally deployed flow
408- # if it's a PrefectProcessor type, run the name of the deployment
409- # 1. get the name of the deployment
407+ # - if it's a BaseProcessor type, create a flow_run for our locally deployed
408+ # flow and then either run in blocking fashion or non-blocking
409+ # (by leveraging the timeout parameter)
410+ # - if it's a PrefectProcessor type, create a flow run for the provided
411+ # name of the deployment, and either run blocking or non-blocking, like
412+ # the previous
410413 ...
411414 else :
412415 ...
You can’t perform that action at this time.
0 commit comments