fast-vr-44972
02/14/2024, 8:30 PM--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
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
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