From 7a0d18ceb6b0b74b892976ee6271a8f30ce530a3 Mon Sep 17 00:00:00 2001 From: cellarspoon Date: Sat, 1 Jan 2022 17:23:21 +0100 Subject: [PATCH] fix: show unknown insteaf of empty for missing version --- pkg/upstream/stack/stack.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/upstream/stack/stack.go b/pkg/upstream/stack/stack.go index a9b606dd..c48a5ac9 100644 --- a/pkg/upstream/stack/stack.go +++ b/pkg/upstream/stack/stack.go @@ -112,7 +112,7 @@ func GetDeployedServicesByName(ctx context.Context, cl *dockerclient.Client, sta // IsDeployed chekcks whether an appp is deployed or not. func IsDeployed(ctx context.Context, cl *dockerclient.Client, stackName string) (bool, string, error) { - version := "" + version := "unknown" isDeployed := false filter := filters.NewArgs()