recover streams with missing sd blobs, handle previous sd blob bugs

-test download and recover stream with old key sorting
This commit is contained in:
Jack Robison 2019-02-14 18:19:01 -05:00
parent a228d20137
commit dbb6ba6241
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2
6 changed files with 208 additions and 37 deletions
lbrynet/blob

View file

@ -98,7 +98,7 @@ class BlobFile:
t.add_done_callback(lambda *_: self.finished_writing.set())
return
if isinstance(error, (InvalidBlobHashError, InvalidDataError)):
log.error("writer error downloading %s: %s", self.blob_hash[:8], str(error))
log.debug("writer error downloading %s: %s", self.blob_hash[:8], str(error))
elif not isinstance(error, (DownloadCancelledError, asyncio.CancelledError, asyncio.TimeoutError)):
log.exception("something else")
raise error