Skip to content

Commit 97b267a

Browse files
committed
Bugfixes
1 parent 30e2cd9 commit 97b267a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

services/director/src/simcore_service_director/registry_proxy.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -417,8 +417,10 @@ async def get_image_details(
417417
try:
418418
label_data = json.loads(labels[key])
419419
for label_key in label_data:
420-
if isinstance(label_key, dict) or isinstance(
421-
label_data, list
420+
if (
421+
isinstance(label_key, dict)
422+
or isinstance(label_data, list)
423+
or isinstance(label_data, str)
422424
): # Dicts from "simcore.service." docker image labels are omitted.
423425
continue
424426
image_details[label_key] = label_data[label_key]

0 commit comments

Comments
 (0)