has anyone else ever seen this behavior whereby th...
# prefect-community
s
has anyone else ever seen this behavior whereby they register a flow (using
DockerRun
run config,
Docker
for storage) with labels, and the labels show up in the prefect UI, but not in the terminal output? e.g. I execute:
Copy code
with Flow(
    "docker-flow", run_config=DockerRun(labels=["data-science"]), storage=Docker()
) as flow:
and then register the flow. The flow shows up in the UI with the
data-science
label, but the terminal output when registering the flow looks like:
Copy code
Flow URL: <flow_url>
 └── ID: <id>
 └── Project: test-project
 └── Labels: []
this was causing me to believe that the labels weren't getting attached to the flow, but they are in fact there
j
Hi @Sean Talia the PR that “accidentally” fixes this was actually just merged minutes ago! 🙂 Will be out in the next release! (here is the line that was changed)
👍 1
s
perfect, always happy to hear that it's not me missing something obvious 😎