forked from LBRYCommunity/lbry-sdk
Merge pull request #1157 from lbryio/fix-1156
Fixed regression in stream_availablity command
This commit is contained in:
commit
a9fd19e6cf
2 changed files with 2 additions and 1 deletions
|
@ -15,6 +15,7 @@ at anytime.
|
||||||
### Fixed
|
### Fixed
|
||||||
* incorrectly raised download cancelled error for already verified blob files
|
* 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
|
* 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
|
### Deprecated
|
||||||
*
|
*
|
||||||
|
|
|
@ -3246,7 +3246,7 @@ class Daemon(AuthJSONRPCServer):
|
||||||
--uri=<uri> : (str) check availability for this uri
|
--uri=<uri> : (str) check availability for this uri
|
||||||
--search_timeout=<search_timeout> : (int) how long to search for peers for the blob
|
--search_timeout=<search_timeout> : (int) how long to search for peers for the blob
|
||||||
in the dht
|
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:
|
Returns:
|
||||||
(dict) {
|
(dict) {
|
||||||
|
|
Loading…
Reference in a new issue