From: David Stainton Date: Wed, 26 Aug 2015 20:04:49 +0000 (+0200) Subject: Remove stupid errback and raise proper conflict exception X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=dfafd0e29c8a1a463cff3ad7f6b4b7a8e8754e0f;p=tahoe-lafs%2Ftahoe-lafs.git Remove stupid errback and raise proper conflict exception --- diff --git a/src/allmydata/frontends/magic_folder.py b/src/allmydata/frontends/magic_folder.py index 5ff69514..7c43ea5a 100644 --- a/src/allmydata/frontends/magic_folder.py +++ b/src/allmydata/frontends/magic_folder.py @@ -534,7 +534,7 @@ class Downloader(QueueMixin): d2 = defer.succeed(res) d2.addCallback(lambda result: self._write_downloaded_file(name, result, self._local_path_u)) d2.addCallback(do_update_db) - d2.addErrback(lambda x: do_update_db(x, is_conflicted=True)) + # XXX handle failure here with addErrback... self._count('objects_downloaded') return d2 def failed(f): @@ -573,14 +573,12 @@ class Downloader(QueueMixin): cls._rename_conflicted_file(path, replacement_path) else: try: - print "-------- here's the conflict replace_file: path %s, replacement_path %s, backup_path %s" % (path, replacement_path, backup_path) fileutil.replace_file(path, replacement_path, backup_path) - except fileutil.ConflictError: is_conflict = True cls._rename_conflicted_file(path, replacement_path) if is_conflict: - raise(Exception("Conflict detected...")) + raise ConflictError("Conflict detected...") @classmethod def _rename_conflicted_file(self, path, replacement_path):