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:
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:
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