Skip to content

Commit d848886

Browse files
committed
cre-1601: delegate integrations adjustments
1 parent 6d1b057 commit d848886

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

pkg/types/plugin.go

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ const (
99
OCR2VRF OCR2PluginType = "ocr2vrf"
1010

1111
// TODO: sc-55296 to rename ocr2keeper to ocr2automation in code
12-
OCR2Keeper OCR2PluginType = "ocr2automation"
13-
Functions OCR2PluginType = "functions"
14-
Mercury OCR2PluginType = "mercury"
15-
LLO OCR2PluginType = "llo"
16-
GenericPlugin OCR2PluginType = "plugin"
17-
OCR3Capability OCR2PluginType = "ocr3-capability"
18-
VaultPlugin OCR2PluginType = "vault-plugin"
19-
DonTimePlugin OCR2PluginType = "dontime"
20-
ShardOrchestratorPlugin OCR2PluginType = "ring"
21-
SecureMint OCR2PluginType = "securemint"
12+
OCR2Keeper OCR2PluginType = "ocr2automation"
13+
Functions OCR2PluginType = "functions"
14+
Mercury OCR2PluginType = "mercury"
15+
LLO OCR2PluginType = "llo"
16+
GenericPlugin OCR2PluginType = "plugin"
17+
OCR3Capability OCR2PluginType = "ocr3-capability"
18+
VaultPlugin OCR2PluginType = "vault-plugin"
19+
DonTimePlugin OCR2PluginType = "dontime"
20+
RingPlugin OCR2PluginType = "ring"
21+
SecureMint OCR2PluginType = "securemint"
2222

2323
CCIPCommit OCR2PluginType = "ccip-commit"
2424
CCIPExecution OCR2PluginType = "ccip-execution"

pkg/workflows/ring/factory.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,13 @@ func (o *Factory) NewReportingPlugin(_ context.Context, config ocr3types.Reporti
5757
}
5858

5959
func (o *Factory) Start(ctx context.Context) error {
60-
return o.StartOnce("ShardOrchestratorPlugin", func() error {
60+
return o.StartOnce("RingPlugin", func() error {
6161
return nil
6262
})
6363
}
6464

6565
func (o *Factory) Close() error {
66-
return o.StopOnce("ShardOrchestratorPlugin", func() error {
66+
return o.StopOnce("RingPlugin", func() error {
6767
return nil
6868
})
6969
}

pkg/workflows/ring/plugin.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ func NewPlugin(store *Store, config ocr3types.ReportingPluginConfig, lggr logger
6969
return &Plugin{
7070
store: store,
7171
config: config,
72-
lggr: logger.Named(lggr, "ShardOrchestratorPlugin"),
72+
lggr: logger.Named(lggr, "RingPlugin"),
7373
batchSize: cfg.BatchSize,
7474
minShardCount: cfg.MinShardCount,
7575
maxShardCount: cfg.MaxShardCount,

0 commit comments

Comments
 (0)