Skip to content

Commit

Permalink
In Downloader._get_collective_latest_file, consume errors when gettin…
Browse files Browse the repository at this point in the history
…g metadata.

Signed-off-by: Daira Hopwood <daira@jacaranda.org>
  • Loading branch information
daira committed Aug 24, 2015
1 parent d0cadd1 commit 0fde8b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/allmydata/frontends/magic_folder.py
Expand Up @@ -441,7 +441,7 @@ def scan_collective(result):
d = defer.succeed(None)
d.addCallback(lambda x, dir_name=dir_name: result[dir_name][0].get_child_and_metadata(filename))
list_of_deferreds.append(d)
deferList = defer.DeferredList(list_of_deferreds)
deferList = defer.DeferredList(list_of_deferreds, consumeErrors=True)
return deferList
collective_dirmap_d.addCallback(scan_collective)
def highest_version(deferredList):
Expand Down

0 comments on commit 0fde8b4

Please sign in to comment.