Alex de Geofroy
11/16/2023, 4:06 AMMarvin
11/16/2023, 4:07 AMflow.from_source
method is used to retrieve a flow from remote storage and it accepts a git repository URL and an entrypoint pointing to the flow to load from the repository.
If your tasks are being skipped when running as a subflow, it might be due to some other issue. It could be related to how the tasks are being mapped or the state of the tasks when the subflow is invoked.
Without more specific information about your flow and tasks, it's hard to say exactly why this is happening. I would recommend checking the state of your tasks and the mapping in your subflow. If you're still having trouble, you might want to consider reaching out to the Prefect community for more specific help.Alex de Geofroy
11/16/2023, 4:13 AMMarvin
11/16/2023, 4:14 AMflow.from_source
method is used to retrieve a flow from remote storage and it accepts a git repository URL and an entrypoint pointing to the flow to load from the repository.
A subflow run is created when a flow function is called inside the execution of another flow. The primary flow is the "parent" flow. The flow created within the parent is the "child" flow or "subflow." Subflow runs behave like normal flow runs. There is a full representation of the flow run in the backend as if it had been called separately.
If your tasks are being skipped when running as a subflow, it might be due to some other issue. It could be related to how the tasks are being mapped or the state of the tasks when the subflow is invoked.
If you're still having trouble, you might want to consider reaching out to the Prefect community for more specific help.