From b6f7dae2f5358c08ec9c2dda3eb3a3dff906d2a6 Mon Sep 17 00:00:00 2001 From: Ingo Oppermann Date: Tue, 27 Jun 2023 21:17:56 +0200 Subject: [PATCH] Show order for processes in the cluster DB --- http/handler/api/cluster.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/http/handler/api/cluster.go b/http/handler/api/cluster.go index 0f14a2f7..316dfdb3 100644 --- a/http/handler/api/cluster.go +++ b/http/handler/api/cluster.go @@ -454,6 +454,10 @@ func (h *ClusterHandler) ListStoreProcesses(c echo.Context) error { process.Config = config + process.State = &api.ProcessState{ + Order: p.Order, + } + processes = append(processes, process) }