Commit 47204c35 authored by Tobias Wohland's avatar Tobias Wohland Committed by GitHub

fix: delete unnecessary port assignment for prysm (#810)

parent ebbbe836
...@@ -92,7 +92,6 @@ def get_config( ...@@ -92,7 +92,6 @@ def get_config(
public_ports = {} public_ports = {}
public_keymanager_port_assignment = {} public_keymanager_port_assignment = {}
public_gprc_port_assignment = {}
if port_publisher.vc_enabled: if port_publisher.vc_enabled:
public_ports_for_component = shared_utils.get_public_ports_for_component( public_ports_for_component = shared_utils.get_public_ports_for_component(
"vc", port_publisher, vc_index "vc", port_publisher, vc_index
...@@ -103,9 +102,6 @@ def get_config( ...@@ -103,9 +102,6 @@ def get_config(
public_keymanager_port_assignment = { public_keymanager_port_assignment = {
constants.VALIDATOR_HTTP_PORT_ID: public_ports_for_component[1] constants.VALIDATOR_HTTP_PORT_ID: public_ports_for_component[1]
} }
public_gprc_port_assignment = {
constants.VALDIATOR_GRPC_PORT_ID: public_ports_for_component[2]
}
public_ports = shared_utils.get_port_specs(public_port_assignments) public_ports = shared_utils.get_port_specs(public_port_assignments)
ports = {} ports = {}
...@@ -118,7 +114,6 @@ def get_config( ...@@ -118,7 +114,6 @@ def get_config(
public_ports.update( public_ports.update(
shared_utils.get_port_specs(public_keymanager_port_assignment) shared_utils.get_port_specs(public_keymanager_port_assignment)
) )
public_ports.update(shared_utils.get_port_specs(public_gprc_port_assignment))
config_args = { config_args = {
"image": image, "image": image,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment