forked from LBRYCommunity/lbry-sdk
add streaming_only
and save_blobs
settings
This commit is contained in:
parent
b230d8fbcb
commit
d7ed8ffaa6
1 changed files with 3 additions and 0 deletions
|
@ -484,6 +484,8 @@ class Config(CLIConfig):
|
||||||
node_rpc_timeout = Float("Timeout when making a DHT request", constants.rpc_timeout)
|
node_rpc_timeout = Float("Timeout when making a DHT request", constants.rpc_timeout)
|
||||||
|
|
||||||
# blob announcement and download
|
# blob announcement and download
|
||||||
|
save_blobs = Toggle("Save encrypted blob files for hosting, otherwise download blobs to memory only.", True)
|
||||||
|
|
||||||
announce_head_and_sd_only = Toggle(
|
announce_head_and_sd_only = Toggle(
|
||||||
"Announce only the descriptor and first (rather than all) data blob for a stream to the DHT", True,
|
"Announce only the descriptor and first (rather than all) data blob for a stream to the DHT", True,
|
||||||
previous_names=['announce_head_blobs_only']
|
previous_names=['announce_head_blobs_only']
|
||||||
|
@ -537,6 +539,7 @@ class Config(CLIConfig):
|
||||||
cache_time = Integer("Time to cache resolved claims", 150) # TODO: use this
|
cache_time = Integer("Time to cache resolved claims", 150) # TODO: use this
|
||||||
|
|
||||||
# daemon
|
# daemon
|
||||||
|
streaming_only = Toggle("Only stream downloaded files, do not write files to the downloads directory", False)
|
||||||
components_to_skip = Strings("components which will be skipped during start-up of daemon", [])
|
components_to_skip = Strings("components which will be skipped during start-up of daemon", [])
|
||||||
share_usage_data = Toggle(
|
share_usage_data = Toggle(
|
||||||
"Whether to share usage stats and diagnostic info with LBRY.", True,
|
"Whether to share usage stats and diagnostic info with LBRY.", True,
|
||||||
|
|
Loading…
Reference in a new issue