Skip to content

Commit

Permalink
fix: delete unnecessary port assignment for prysm (#810)
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiWo authored Oct 24, 2024
1 parent ebbbe83 commit 47204c3
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/vc/prysm.star
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ def get_config(

public_ports = {}
public_keymanager_port_assignment = {}
public_gprc_port_assignment = {}
if port_publisher.vc_enabled:
public_ports_for_component = shared_utils.get_public_ports_for_component(
"vc", port_publisher, vc_index
Expand All @@ -103,9 +102,6 @@ def get_config(
public_keymanager_port_assignment = {
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)

ports = {}
Expand All @@ -118,7 +114,6 @@ def get_config(
public_ports.update(
shared_utils.get_port_specs(public_keymanager_port_assignment)
)
public_ports.update(shared_utils.get_port_specs(public_gprc_port_assignment))

config_args = {
"image": image,
Expand Down

0 comments on commit 47204c3

Please sign in to comment.