diff --git a/internal/runner/operation.go b/internal/runner/operation.go index 4bcd59299..9f32cfbe1 100644 --- a/internal/runner/operation.go +++ b/internal/runner/operation.go @@ -65,7 +65,6 @@ func (r *Runner) executeJob( opts := []core.BasisOption{ core.WithLogger(log), core.WithUI(ui), - core.WithPluginManager(r.plugins), core.WithClient(r.client), core.WithJobInfo(jobInfo), } @@ -84,7 +83,7 @@ func (r *Runner) executeJob( opts = append(opts, core.WithBasisRef(ref)) // Load our basis - b, err := r.factory.New("", opts...) + b, err := r.factory.New(job.Id, opts...) if err != nil { return }