Skip to content

Commit

Permalink
fix: add http to teku endpoint (#622)
Browse files Browse the repository at this point in the history
  • Loading branch information
barnabasbusa committed May 16, 2024
1 parent 3a57467 commit 085b6e1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/cl/teku/teku_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ def get_used_ports(discovery_port):
discovery_port, shared_utils.UDP_PROTOCOL
),
BEACON_HTTP_PORT_ID: shared_utils.new_port_spec(
BEACON_HTTP_PORT_NUM, shared_utils.TCP_PROTOCOL
BEACON_HTTP_PORT_NUM,
shared_utils.TCP_PROTOCOL,
shared_utils.HTTP_APPLICATION_PROTOCOL,
),
BEACON_METRICS_PORT_ID: shared_utils.new_port_spec(
BEACON_METRICS_PORT_NUM, shared_utils.TCP_PROTOCOL
Expand Down

0 comments on commit 085b6e1

Please sign in to comment.