From df97a5bb93f406544bba0c6145e3533fc6f7ff31 Mon Sep 17 00:00:00 2001 From: Shreyas Goenka Date: Tue, 22 Oct 2024 01:29:04 +0200 Subject: [PATCH] Remove unnecessary API call in pipeline runner --- bundle/run/pipeline.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/bundle/run/pipeline.go b/bundle/run/pipeline.go index d684f838..092e6dcb 100644 --- a/bundle/run/pipeline.go +++ b/bundle/run/pipeline.go @@ -90,11 +90,6 @@ func (r *pipelineRunner) Run(ctx context.Context, opts *Options) (output.RunOutp // Include resource key in logger. ctx = log.NewContext(ctx, log.GetLogger(ctx).With("resource", r.Key())) w := r.bundle.WorkspaceClient() - _, err := w.Pipelines.GetByPipelineId(ctx, pipelineID) - if err != nil { - log.Warnf(ctx, "Cannot get pipeline: %s", err) - return nil, err - } req, err := opts.Pipeline.toPayload(r.pipeline, pipelineID) if err != nil {