I have the flow which is attached and it keeps fai...
# ask-metaflow
e
I have the flow which is attached and it keeps failing with the following error:
Copy code
2023-02-21 15:35:46.754 [1401/join_results/9687 (pid 172965)] print(f"my config: {self.my_config}")
2023-02-21 15:35:46.754 [1401/join_results/9687 (pid 172965)] File "/home/sderosa/python3.8-venv/lib/python3.8/site-packages/metaflow/flowspec.py", line 225, in __getattr__
2023-02-21 15:35:46.754 [1401/join_results/9687 (pid 172965)] raise AttributeError("Flow %s has no attribute '%s'" % (self.name, name))
2023-02-21 15:35:46.754 [1401/join_results/9687 (pid 172965)] AttributeError: Flow HelloAWSFlow has no attribute 'my_config'
2023-02-21 15:35:46.754 [1401/join_results/9687 (pid 172965)] 
2023-02-21 15:35:46.866 [1401/join_results/9687 (pid 172965)] Task failed.
how come my
join_results()
step cant access a member var
my_config
from the
start()
step ?
1
a
@elegant-dress-32875 this article might help - https://docs.metaflow.org/metaflow/basics#data-flow-through-the-graph
e
yeah sweet this worked for me 🙂