From 4b132315c7ed5e125a524f87aaeb76a603f79110 Mon Sep 17 00:00:00 2001 From: Han Verstraete Date: Wed, 23 Feb 2022 21:42:59 +0000 Subject: [PATCH] Fix #245 missing image value Signed-off-by: Han Verstraete --- pkg/provider/handlers/replicas.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/provider/handlers/replicas.go b/pkg/provider/handlers/replicas.go index cfbcd0b..1e17379 100644 --- a/pkg/provider/handlers/replicas.go +++ b/pkg/provider/handlers/replicas.go @@ -31,6 +31,7 @@ func MakeReplicaReaderHandler(client *containerd.Client) func(w http.ResponseWri if f, err := GetFunction(client, functionName, lookupNamespace); err == nil { found := types.FunctionStatus{ Name: functionName, + Image: f.image, AvailableReplicas: uint64(f.replicas), Replicas: uint64(f.replicas), Namespace: f.namespace,