https://prefect.io logo
m

Mike Loose

09/09/2023, 8:51 PM
Hi, I'm running 2.11.3, self-hosted. I cannot seem to get the dependency arrows between flows / tasks to show, yet on a previous version they did show. The option "Hide Dependency Arrows" is unticked. Perhaps it is that I have no dependency between these flows / tasks. Anyone know of a resource to read up on this? Searched web but didn't come up with anything specific to it. Thanks in advance. Rgs, Mike
n

Nate

09/11/2023, 1:41 AM
hi @Mike Loose what does your code look like? are your tasks / subflows passing data into each other?
m

Mike Loose

09/11/2023, 2:13 PM
Here is how the code is laid out. Note that for the deployment, entry point is _execute_pipeline_. pipeline.py
from subdir.actionOne import *
from subdir.actionTwo import *
@flow
def execute_pipeline():
action_1()
action_2()
actionOne.py
@task
def action_1():
code...
actionTwo.py
@task
def action_2()
code...
n

Nate

09/11/2023, 2:15 PM
so does action_1 pass its result into action_2? otherwise it would make sense that there's no arrows
2 Views