From 21ed8559bf634c0cdb547f006d856e7ab7f1d897 Mon Sep 17 00:00:00 2001 From: allegroai <> Date: Wed, 26 Jul 2023 18:51:20 +0300 Subject: [PATCH] Fix worker keys not returned in queues.get_all_ex --- apiserver/bll/queue/queue_bll.py | 1 + 1 file changed, 1 insertion(+) diff --git a/apiserver/bll/queue/queue_bll.py b/apiserver/bll/queue/queue_bll.py index d8af466..c096b0f 100644 --- a/apiserver/bll/queue/queue_bll.py +++ b/apiserver/bll/queue/queue_bll.py @@ -242,6 +242,7 @@ class QueueBLL(object): { "name": w.id, "ip": w.ip, + "key": w.key, "task": w.task.to_struct() if w.task else None, } for w in queue_workers.get(item["id"], [])