Hi, I'm running 2.11.3, self-hosted. I cannot seem...
# ask-community
m
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
hi @Mike Loose what does your code look like? are your tasks / subflows passing data into each other?
m
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
so does action_1 pass its result into action_2? otherwise it would make sense that there's no arrows
a
Is there any way to show dependency arrow without passing any results between tasks. Just want to show the work flow also in Radar View.
m
@Nate - been a while since you replied but thanks for that. Makes sense.