Skip to content

Commit

Permalink
use fully qualified service names (#286)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmank88 authored Nov 1, 2024
1 parent 00090bf commit 86885ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/reader/home_chain.go
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ func (r *homeChainPoller) HealthReport() map[string]error {
}

func (r *homeChainPoller) Name() string {
return "homeChainPoller"
return r.lggr.Name()
}

func createFChain(chainConfigs map[cciptypes.ChainSelector]ChainConfig) map[cciptypes.ChainSelector]int {
Expand Down
2 changes: 1 addition & 1 deletion pkg/reader/rmn_home.go
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ func (r *rmnHomePoller) HealthReport() map[string]error {
}

func (r *rmnHomePoller) Name() string {
return "rmnHomePoller"
return r.lggr.Name()
}

func validate(config VersionedConfig) error {
Expand Down

0 comments on commit 86885ce

Please sign in to comment.