I’m trying to run a flow.. but getting stuck in pe...
# prefect-community
d
I’m trying to run a flow.. but getting stuck in pending. My flow is getting registered with a hostname as a label which I presume is my issue, but I can’t figure out how to not have that label
j
Hi @Doran you can disable the default hostname label on your flow when you register with:
Copy code
flow.register(add_default_labels=False, ...)
d
Ahhh yep, that is it. Thank you.
j
The hostname label is there when using Local storage to prevent other agents running on other machines from pulling the flow since it is stored as a local file
P 1
d
I see, that makes sense. I was searching all over the docs and didn’t see a mention of that; thank you! been struggling with this for longer than I’d like to admit.. 🙂
j
We’re always looking for feedback and ways to improve the documentation! Not sure if you have seen it but here’s a page on the various storage options you have available 🙂 https://docs.prefect.io/orchestration/execution/storage_options.html
👍 1
c
@Marvin archive “How to remove automatic labels from my flow”