From 0b684db148378b6b5cd85553a670a87e87e932c4 Mon Sep 17 00:00:00 2001 From: Alexander Matyushentsev Date: Fri, 1 Nov 2019 11:49:01 -0700 Subject: [PATCH] Issue #2616 - argocd app diff prints only first difference (#2617) --- cmd/argocd/commands/app.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cmd/argocd/commands/app.go b/cmd/argocd/commands/app.go index f05ad054e9..c34645299e 100644 --- a/cmd/argocd/commands/app.go +++ b/cmd/argocd/commands/app.go @@ -1015,8 +1015,7 @@ func NewApplicationDiffCommand(clientOpts *argocdclient.ClientOptions) *cobra.Co } foundDiffs = true - err = diff.PrintDiff(item.key.Name, target, live) - errors.CheckError(err) + _ = diff.PrintDiff(item.key.Name, target, live) } } if foundDiffs {