From f6dff086efc9a6c2ca94747d26fe2ea699263cdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Tue, 31 May 2022 15:47:26 +0200 Subject: [PATCH] Manager: show worker version in the workers table --- internal/manager/api_impl/worker_mgt.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/manager/api_impl/worker_mgt.go b/internal/manager/api_impl/worker_mgt.go index 0b9fabeb..cdd0b072 100644 --- a/internal/manager/api_impl/worker_mgt.go +++ b/internal/manager/api_impl/worker_mgt.go @@ -59,6 +59,7 @@ func workerSummary(w persistence.Worker) api.WorkerSummary { Id: w.UUID, Nickname: w.Name, Status: w.Status, + Version: w.Software, } if w.StatusRequested != "" { summary.StatusRequested = &w.StatusRequested