From 4a6dd0cfc726b782d4ca592b4f8c20b045641512 Mon Sep 17 00:00:00 2001 From: Barnabas Busa Date: Thu, 16 May 2024 22:29:15 +0300 Subject: [PATCH] fix: add http to teku endpoint --- src/cl/teku/teku_launcher.star | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/cl/teku/teku_launcher.star b/src/cl/teku/teku_launcher.star index 0d7853919..3d27a5f2c 100644 --- a/src/cl/teku/teku_launcher.star +++ b/src/cl/teku/teku_launcher.star @@ -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