From 2449604844be835c564ee3b8d29c84555ac839ff Mon Sep 17 00:00:00 2001 From: Job Evers-Meltzer Date: Fri, 13 Jan 2017 08:18:07 -0600 Subject: [PATCH] fixup: bug fix for stopping downloads --- lbrynet/core/client/DownloadManager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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