Hi - I have two flows that I am trying to merge in...
# prefect-community
i
Hi - I have two flows that I am trying to merge into one using
update
. They flows are located in separate modules and have some duplicate parameters. Unfortunately the example pattern for joining flows with duplicate parameters only compiles if all the duplicated parameters are removed from their respective modules. Which makes multiple flow development difficult. Is there another pattern or solution where flows can be developed independently and then merged? --thanks https://stackoverflow.com/questions/60679595/how-does-one-update-a-prefect-flow-with-duplicate-parameters .
n
Hi @itay livni - there's not another pattern that exists as far as I'm aware. Perhaps there's a centralized solution you can use where you pull parameters from some common module to avoid duplication?
i
🤔 Let me explore that
p
Would it be possible for
flow.update(new_flow)
to save the new flow's edges in a namespace for
new_flow
?
🤔 1