From 5fe339c53b27144bc5ab861363fd8d67ec2cbd98 Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Tue, 9 Nov 2021 14:44:03 -0500 Subject: [PATCH] update default tcp/blob port to be the same as the default udp/dht port (4444) --- lbry/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbry/conf.py b/lbry/conf.py index 7dca19c5d..838aedc95 100644 --- a/lbry/conf.py +++ b/lbry/conf.py @@ -613,7 +613,7 @@ class Config(CLIConfig): "ports or have firewall rules you likely want to disable this.", True ) udp_port = Integer("UDP port for communicating on the LBRY DHT", 4444, previous_names=['dht_node_port']) - tcp_port = Integer("TCP port to listen for incoming blob requests", 3333, previous_names=['peer_port']) + tcp_port = Integer("TCP port to listen for incoming blob requests", 4444, previous_names=['peer_port']) prometheus_port = Integer("Port to expose prometheus metrics (off by default)", 0) network_interface = String("Interface to use for the DHT and blob exchange", '0.0.0.0')