Just a PSA: Don't use `--tags` as a parameter for ...
# ask-metaflow
f
Just a PSA: Don't use
--tags
as a parameter for the flow. We ran into an issue when we wanted to set tags inside the flow when it gets triggered using
Copy code
from metaflow import current
current.run.add_tags(['tag1', 'tag2'])
So we decided to use
--tags
as a parameter which we will pass during trigger
Copy code
python <flow> argo-workflows trigger --tags="my_tag"
It lead to complete breakdown of flow run where it won't even show the underlying DAG on UI since we were passing
--tags="our_custom_tags"
Check the 🧵 for error stack
✅ 1