From 41a757b7ed5c89592aee99ef1dadc520e8c41128 Mon Sep 17 00:00:00 2001 From: cellarspoon Date: Fri, 24 Dec 2021 00:43:59 +0100 Subject: [PATCH] fix: only show when success is for sure --- pkg/upstream/stack/stack.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkg/upstream/stack/stack.go b/pkg/upstream/stack/stack.go index 9361894e..cad3c3e7 100644 --- a/pkg/upstream/stack/stack.go +++ b/pkg/upstream/stack/stack.go @@ -455,10 +455,9 @@ func deployServices( return err } logrus.Debugf("assuming %s converged successfully", serviceID) + logrus.Info("services converged 👌") } - logrus.Info("services converged 👌") - return nil }