From f05948903deeb28e965b38c794eeea02ff120519 Mon Sep 17 00:00:00 2001 From: liamfallon Date: Wed, 16 Oct 2024 11:22:46 -0700 Subject: [PATCH] Incvestigate why e2e failing on github --- pkg/engine/engine.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/engine/engine.go b/pkg/engine/engine.go index 7b659652..41510ba7 100644 --- a/pkg/engine/engine.go +++ b/pkg/engine/engine.go @@ -1039,8 +1039,8 @@ func applyResourceMutations(ctx context.Context, draft repository.PackageDraft, updatedResources, taskResult, err := m.Apply(ctx, baseResources) if taskResult == nil && err == nil { // a nil taskResult means nothing changed - // baseResources = updatedResources - // applied = updatedResources + baseResources = updatedResources + applied = updatedResources continue }