Simon
11/02/2023, 2:58 PMconflicts with another flow. Consider specifying a unique `name` parameter in the flow definition:
`@flow(name='my_unique_name', ...)`
warnings.warn(
All the flows have unique names. It does re-register existing flows to deploy any changes, maybe that is the cause?Marvin
11/02/2023, 2:58 PMSimon
11/02/2023, 3:00 PMMarvin
11/02/2023, 3:02 PMDeployment.build_from_flow()
and apply()
, similar to your case.
2. There could be a problem with how Prefect is handling flow runs in different work pools. In this issue, the user reported a warning when running a deployment with a pool name other than default-agent-pool
.
3. There might be an issue with how Prefect is handling Kubernetes tolerations. In this issue, the user reported that attempting to patch in pod tolerations through either customizations or infra_overrides does not appear to work.
4. There could be an issue with how Prefect is handling the pausing of flow runs from the UI. In this issue, the user reported that pausing a flow run from the Prefect Server UI will exit the flow entirely instead of pausing it.
5. There might be an issue with Prefect not finding a custom block. In this issue, the user reported that Prefect 2.10.11 does not find a custom block, while Prefect 2.10.10 does.
It's hard to say for sure without more information, but these issues might provide some insight into what's causing your warning. I would recommend checking these issues and see if any of the solutions or workarounds mentioned there help resolve your warning. If not, you might want to consider opening a new issue in the Prefect GitHub repository to get help from the Prefect team.