Skip to content

Commit

Permalink
Fixes CI
Browse files Browse the repository at this point in the history
  • Loading branch information
vyzaldysanchez committed Nov 14, 2024
1 parent 1c30ee5 commit ec81c23
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion core/services/standardcapabilities/delegate.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import (
"github.com/smartcontractkit/chainlink-common/pkg/sqlutil"
"github.com/smartcontractkit/chainlink-common/pkg/types"
"github.com/smartcontractkit/chainlink-common/pkg/types/core"

"github.com/smartcontractkit/chainlink/v2/core/capabilities/compute"
gatewayconnector "github.com/smartcontractkit/chainlink/v2/core/capabilities/gateway_connector"
"github.com/smartcontractkit/chainlink/v2/core/capabilities/webapi"
Expand Down Expand Up @@ -253,7 +254,10 @@ func (d *Delegate) ServicesForSpec(ctx context.Context, spec job.Job) ([]job.Ser
return uuid.New().String()
}

computeSrvc := compute.NewAction(cfg, log, d.registry, handler, idGeneratorFn)
computeSrvc, err := compute.NewAction(cfg, log, d.registry, handler, idGeneratorFn)
if err != nil {
return nil, err
}
return []job.ServiceCtx{computeSrvc}, nil
}

Expand Down

0 comments on commit ec81c23

Please sign in to comment.