From 7b2de1ae368bf52fe02bd1731d6598d71334c1f7 Mon Sep 17 00:00:00 2001 From: Adam Haffar Date: Wed, 11 Dec 2024 18:09:33 +0000 Subject: [PATCH] add back newlines --- pkg/lifecycle/service.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/lifecycle/service.go b/pkg/lifecycle/service.go index 957d822d6..fd4a5f104 100644 --- a/pkg/lifecycle/service.go +++ b/pkg/lifecycle/service.go @@ -393,10 +393,12 @@ func (s *Service) buildNodes(ctx context.Context, pl *pipeline.Instance) ([]stre if len(sourceNodes) == 0 { return nil, cerrors.New("can't build pipeline without any source connectors") } + processorNodes, err := s.buildProcessorNodes(ctx, pl, pl.ProcessorIDs, &fanIn, &fanOut) if err != nil { return nil, cerrors.Errorf("could not build processor nodes: %w", err) } + destinationNodes, err := s.buildDestinationNodes(ctx, pl, &fanOut) if err != nil { return nil, cerrors.Errorf("could not build destination nodes: %w", err)