Skip to content

Commit de97ec8

Browse files
committed
fix: change default base port from 5052 to 8081 in converter
The assumption that all clients use port 5052 is incorrect. Update to use 8081 as the default base port, which matches the metricsPort values in validator-config.yaml.
1 parent ca79d4d commit de97ec8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

convert-validator-config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import yaml
2121

2222

23-
def convert_validator_config(yaml_path: str, output_path: str, base_port: int = 5052):
23+
def convert_validator_config(yaml_path: str, output_path: str, base_port: int = 8081):
2424
"""
2525
Convert validator-config.yaml to upstreams.json.
2626

0 commit comments

Comments
 (0)