diff --git a/lbrynet/core/client/DownloadManager.py b/lbrynet/core/client/DownloadManager.py index 0b1e3adb6..dedd2e3df 100644 --- a/lbrynet/core/client/DownloadManager.py +++ b/lbrynet/core/client/DownloadManager.py @@ -58,7 +58,7 @@ class DownloadManager(object): d1.addBoth(check_stop, "progress manager") d2 = self.connection_manager.stop() d2.addBoth(check_stop, "connection manager") - dl = defer.DeferredList([d1, d2], fireOnOneErrback=True, consumeErrors=True) + dl = defer.DeferredList([d1, d2], consumeErrors=True) dl.addCallback(lambda results: all([success for success, val in results])) return dl