@@ -45,12 +45,6 @@ import (
4545 "github.com/smartcontractkit/chainlink-evm/pkg/mercury"
4646 "github.com/smartcontractkit/chainlink-evm/pkg/txmgr"
4747 evmutils "github.com/smartcontractkit/chainlink-evm/pkg/utils"
48- "github.com/smartcontractkit/chainlink/v2/core/services/ring"
49- "github.com/smartcontractkit/chainlink/v2/core/services/shardorchestrator"
50-
51- "github.com/smartcontractkit/chainlink/v2/core/services/ccv/ccvcommitteeverifier"
52- "github.com/smartcontractkit/chainlink/v2/core/services/ccv/ccvexecutor"
53- "github.com/smartcontractkit/chainlink/v2/core/services/cresettings"
5448
5549 "github.com/smartcontractkit/chainlink/v2/core/bridges"
5650 "github.com/smartcontractkit/chainlink/v2/core/build"
@@ -62,7 +56,10 @@ import (
6256 "github.com/smartcontractkit/chainlink/v2/core/services"
6357 "github.com/smartcontractkit/chainlink/v2/core/services/blockhashstore"
6458 "github.com/smartcontractkit/chainlink/v2/core/services/blockheaderfeeder"
59+ "github.com/smartcontractkit/chainlink/v2/core/services/ccv/ccvcommitteeverifier"
60+ "github.com/smartcontractkit/chainlink/v2/core/services/ccv/ccvexecutor"
6561 "github.com/smartcontractkit/chainlink/v2/core/services/cre"
62+ "github.com/smartcontractkit/chainlink/v2/core/services/cresettings"
6663 "github.com/smartcontractkit/chainlink/v2/core/services/cron"
6764 "github.com/smartcontractkit/chainlink/v2/core/services/directrequest"
6865 "github.com/smartcontractkit/chainlink/v2/core/services/feeds"
@@ -74,14 +71,15 @@ import (
7471 "github.com/smartcontractkit/chainlink/v2/core/services/keystore"
7572 "github.com/smartcontractkit/chainlink/v2/core/services/llo/retirement"
7673 "github.com/smartcontractkit/chainlink/v2/core/services/nodestatusreporter/bridgestatus"
77-
7874 "github.com/smartcontractkit/chainlink/v2/core/services/ocr"
7975 "github.com/smartcontractkit/chainlink/v2/core/services/ocr2"
8076 "github.com/smartcontractkit/chainlink/v2/core/services/ocrbootstrap"
8177 "github.com/smartcontractkit/chainlink/v2/core/services/ocrcommon"
8278 "github.com/smartcontractkit/chainlink/v2/core/services/periodicbackup"
8379 "github.com/smartcontractkit/chainlink/v2/core/services/pipeline"
8480 "github.com/smartcontractkit/chainlink/v2/core/services/relay"
81+ "github.com/smartcontractkit/chainlink/v2/core/services/ring"
82+ "github.com/smartcontractkit/chainlink/v2/core/services/shardorchestrator"
8583 "github.com/smartcontractkit/chainlink/v2/core/services/standardcapabilities"
8684 "github.com/smartcontractkit/chainlink/v2/core/services/streams"
8785 "github.com/smartcontractkit/chainlink/v2/core/services/telemetry"
@@ -289,7 +287,8 @@ func NewApplication(ctx context.Context, opts ApplicationOpts) (Application, err
289287 return nil , fmt .Errorf ("failed to build Beholder auth: %w" , err )
290288 }
291289 loopRegistry := plugins .NewLoopRegistry (globalLogger , cfg .AppID ().String (), cfg .Feature ().LogPoller (),
292- cfg .Database (), cfg .Mercury (), cfg .Tracing (), cfg .Telemetry (), beholderAuthHeaders , csaPubKeyHex , cfg .LOOPP ())
290+ cfg .Database (), cfg .Mercury (), cfg .Pyroscope (), cfg .AutoPprof (), cfg .Tracing (), cfg .Telemetry (),
291+ beholderAuthHeaders , csaPubKeyHex , cfg .LOOPP ())
293292
294293 relayerFactory := RelayerFactory {
295294 Logger : opts .Logger ,
0 commit comments