-
Notifications
You must be signed in to change notification settings - Fork 40
Added possibility to have a secondary el on the host #219
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
This change, relatively simple and backward compatible, enables syncing an external execution client from the host itself instead of relying on running within Docker. We tested it and to succesfully sync with the inner el peer, one further change is needed which is to expose the P2P address to the public interface (instead of only within the host), PR incoming for this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR adds support for using a secondary execution layer (EL) client on the host machine instead of requiring it to run within Docker. The implementation changes the secondaryEL field from a port number to a string that accepts either a port or a full address, maintaining backward compatibility.
Key Changes:
- Modified
secondaryELfield fromuint64(port only) tostring(port or address) - Added regex-based logic to distinguish between port-only and full address inputs
- Updated documentation to explain both usage patterns (port vs full address)
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This change, relatively simple and backward compatible, enables syncing an external execution client from the host itself instead of relying on running within Docker. We tested it and to succesfully sync with the inner el peer, one further change is needed which is to expose the P2P address to the public interface (instead of only within the host), PR incoming for this.