I made a one line change to one of my flows and tr...
# ask-community
l
I made a one line change to one of my flows and tried to deploy thru my CI job - I’m seeing this message in the
register
step
Copy code
Registering <flow-name>... Skipped (metadata unchanged)
What does this check take into account? Must I use the --force command?
k
It takes into account the serialized flow and the graph structure (task dependencies). If your one line change did not change the DAG structure, then yes you would need to use the
--force
flag
👍 1