Anyone else receive a warning along these lines ev...
# ask-community
a
Anyone else receive a warning along these lines even though their task is already decorated with a unique name?
Copy code
UserWarning: A task named 'create_comment' and defined at '/tmp/tmp74xkymgzprefect/.../create_comment.py:7' conflicts with another task. Consider specifying a unique `name` parameter in the task definition:

 `@task(name='my_unique_name', ...)`
s
Yes I have dozens of these, one for every task defined I guess at a glance
And at the flow level as well:
Copy code
conflicts with another flow. Consider specifying a unique `name` parameter in the flow definition:
a
Interesting... I haven't found much on anyone else experiencing this. What deployment "recipe" are you using? For me, I'm seeing this when trying to deploy my flows to a
process
work-pool where my code is being pulled from GitHub on each flow run.
s
Just the default, i.e. local code
Untitled.py