Hello Prefect, short question: When I register my ...
# prefect-community
t
Hello Prefect, short question: When I register my flow I use
labels='prod'
however the registered flow also uses the id of the docker instance it is built into (See screenshot): Is there anyway to delete that, so that only the labels I give are used?
1
a
this is because it adds a hostname label
to delete that from the agent:
Copy code
prefect agent local start --no-hostname-label
and on the flow:
Copy code
flow = Flow("local-flow", storage=Local(add_default_labels=False))
t
Thanks!
🙌 1