Skip to content
This repository was archived by the owner on Oct 25, 2024. It is now read-only.
This repository was archived by the owner on Oct 25, 2024. It is now read-only.

Remote relay aggregator started even if secondary remote endpoints not configured #17

@ctRAC3r

Description

@ctRAC3r

Builder (main branch) attempts to start the relay aggregator even if secondary relay endpoint(s) are not set:

INFO [12-03|19:17:59.193] requesting                               currentSlot=0
INFO [12-03|19:17:59.602] Updated validators                       count=54 slot=0
INFO [12-03|19:17:59.602] requesting                               currentSlot=0
ERROR[12-03|19:17:59.602] could not get validators map from relay, retrying err="Get \"/relay/v1/builder/validators\": unsupported protocol scheme \"\""
ERROR[12-03|19:18:00.603] could not get validators map from relay, retrying err="Get \"/relay/v1/builder/validators\": unsupported protocol scheme \"\""
ERROR[12-03|19:18:01.603] could not get validators map from relay, retrying err="Get \"/relay/v1/builder/validators\": unsupported protocol scheme \"\""
ERROR[12-03|19:18:02.605] could not get validators map from relay  err="Get \"/relay/v1/builder/validators\": unsupported protocol scheme \"\""
ERROR[12-03|19:18:02.605] could not connect to remote relay, continuing anyway err="Get \"/relay/v1/builder/validators\": unsupported protocol scheme \"\""

This happens because strings.Split returns a slice of length 1 with the original string ("") if it can't match the separator (","):

cfg.SecondaryRemoteRelayEndpoints = strings.Split(ctx.String(BuilderSecondaryRemoteRelayEndpoints.Name), ",")

Making the following change fixes the issue:

if len(cfg.SecondaryRemoteRelayEndpoints) > 0 {

-  if len(cfg.SecondaryRemoteRelayEndpoints) > 0 { 
+  if cfg.SecondaryRemoteRelayEndpoints[0] != "" {

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions