This repository was archived by the owner on Oct 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 141
Remote relay aggregator started even if secondary remote endpoints not configured #17
Comments
Fixed in d8e0390 |
Thank you @ctRAC3r for raising the issue! |
avalonche
added a commit
that referenced
this issue
Feb 7, 2023
* Add block build trigger from beacon node * remove empty block building Co-authored-by: avalonche <[email protected]>
avalonche
added a commit
that referenced
this issue
Mar 9, 2023
* Add block build trigger from beacon node * remove empty block building Co-authored-by: avalonche <[email protected]>
avalonche
added a commit
that referenced
this issue
Mar 15, 2023
* Add block build trigger from beacon node * remove empty block building Co-authored-by: avalonche <[email protected]>
avalonche
added a commit
that referenced
this issue
Mar 17, 2023
* Add block build trigger from beacon node * remove empty block building Co-authored-by: avalonche <[email protected]>
avalonche
added a commit
that referenced
this issue
Mar 22, 2023
* Add block build trigger from beacon node * remove empty block building Co-authored-by: avalonche <[email protected]>
avalonche
added a commit
that referenced
this issue
Jul 6, 2023
* Add block build trigger from beacon node * remove empty block building Co-authored-by: avalonche <[email protected]>
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Builder (main branch) attempts to start the relay aggregator even if secondary relay endpoint(s) are not set:
This happens because strings.Split returns a slice of length 1 with the original string ("") if it can't match the separator (","):
builder/cmd/utils/flags.go
Line 1590 in 5d25e8b
Making the following change fixes the issue:
builder/builder/service.go
Line 163 in 5d25e8b
The text was updated successfully, but these errors were encountered: