Hey guys, is there anyway to register flows in an ...
# ask-community
m
Hey guys, is there anyway to register flows in an idempotent way, so it is unchanged then it doesn't a flow as a new version?
s
Hi. You can try this
Copy code
flow.register(
    project_name=flow_build.project,
    idempotency_key=flow.serialized_hash(),
)
👍 2
m
Tremendous Stéphan, ty