Tarek
07/28/2022, 11:21 AMlabels='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?Anna Geller
prefect agent local start --no-hostname-label
and on the flow:
flow = Flow("local-flow", storage=Local(add_default_labels=False))
Tarek
08/04/2022, 10:08 AM