Skip to content

Commit

Permalink
chore: disable metric ports
Browse files Browse the repository at this point in the history
  • Loading branch information
cdummett committed Aug 28, 2024
1 parent 31f42ff commit 697d6c0
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions vega_sim/scenario/fuzzing/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,12 @@ def _run(
):

port_config = {}
if core_metrics_port is not None:
port_config[Ports.METRICS] = core_metrics_port
if data_node_metrics_port is not None:
port_config[Ports.DATA_NODE_METRICS] = data_node_metrics_port
## Temporarily disable metrics ports whilst running multiple
## fuzzing runs in parallel to avoid port conflicts.
# if core_metrics_port is not None:
# port_config[Ports.METRICS] = core_metrics_port
# if data_node_metrics_port is not None:
# port_config[Ports.DATA_NODE_METRICS] = data_node_metrics_port

with VegaServiceNull(
warn_on_raw_data_access=False,
Expand Down

0 comments on commit 697d6c0

Please sign in to comment.