forked from LBRYCommunity/lbry-sdk
Fixed regression in stream_availablity command
This commit is contained in:
parent
1aeba976da
commit
aa7b440989
2 changed files with 2 additions and 1 deletions
|
@ -15,6 +15,7 @@ at anytime.
|
|||
### Fixed
|
||||
* incorrectly raised download cancelled error for already verified blob files
|
||||
* infinite loop where reflector client keeps trying to send failing blobs, which may be failing because they are invalid and thus will never be successfully received
|
||||
* regression in `stream_availability` due to error in it's docstring
|
||||
|
||||
### Deprecated
|
||||
*
|
||||
|
|
|
@ -3246,7 +3246,7 @@ class Daemon(AuthJSONRPCServer):
|
|||
--uri=<uri> : (str) check availability for this uri
|
||||
--search_timeout=<search_timeout> : (int) how long to search for peers for the blob
|
||||
in the dht
|
||||
--search_timeout=<blob_timeout> : (int) how long to try downloading from a peer
|
||||
--blob_timeout=<blob_timeout> : (int) how long to try downloading from a peer
|
||||
|
||||
Returns:
|
||||
(dict) {
|
||||
|
|
Loading…
Reference in a new issue