forked from LBRYCommunity/lbry-sdk
update/add config
remove the following settings: peer_search_timeout sd_download_timeout run_reflector_server download_mirrors pointtrader_server add the following settings: blob_download_timeout peer_connect_timeout node_rpc_timeout
This commit is contained in:
parent
4bf7742c19
commit
30689bbf8d
2 changed files with 6 additions and 6 deletions
|
@ -8,7 +8,7 @@ import yaml
|
|||
from argparse import ArgumentParser
|
||||
from contextlib import contextmanager
|
||||
from appdirs import user_data_dir, user_config_dir
|
||||
from lbrynet.p2p.Error import InvalidCurrencyError
|
||||
from lbrynet.error import InvalidCurrencyError
|
||||
|
||||
log = logging.getLogger(__name__)
|
||||
|
||||
|
@ -407,10 +407,10 @@ class Config(CLIConfig):
|
|||
data_rate = Float("points/megabyte", .0001)
|
||||
delete_blobs_on_remove = Toggle("", True)
|
||||
dht_node_port = Integer("", 4444)
|
||||
download_timeout = Integer("", 180)
|
||||
download_mirrors = Servers("", [
|
||||
('blobs.lbry.io', 80)
|
||||
])
|
||||
download_timeout = Float("", 30.0)
|
||||
blob_download_timeout = Float("", 20.0)
|
||||
peer_connect_timeout = Float("", 3.0)
|
||||
node_rpc_timeout = Float("", constants.rpc_timeout)
|
||||
is_generous_host = Toggle("", True)
|
||||
announce_head_blobs_only = Toggle("", True)
|
||||
concurrent_announcers = Integer("", 10)
|
||||
|
|
|
@ -10,7 +10,7 @@ replacement_cache_size = 8
|
|||
rpc_timeout = 5.0
|
||||
rpc_attempts = 5
|
||||
rpc_attempts_pruning_window = 600
|
||||
iterative_lookup_delay = rpc_timeout / 2.0
|
||||
iterative_lookup_delay = rpc_timeout / 2.0 # TODO: use config val / 2 if rpc timeout is provided
|
||||
refresh_interval = 3600 # 1 hour
|
||||
replicate_interval = refresh_interval
|
||||
data_expiration = 86400 # 24 hours
|
||||
|
|
Loading…
Reference in a new issue