From: Daira Hopwood Date: Tue, 22 Sep 2015 15:45:34 +0000 (+0100) Subject: Make sure that a path is in the pending set before calling Uploader._process on it. X-Git-Url: https://git.rkrishnan.org/simplejson/%3C?a=commitdiff_plain;h=756a64471ab406247e47b37a4f53bd32c8f6868d;p=tahoe-lafs%2Ftahoe-lafs.git Make sure that a path is in the pending set before calling Uploader._process on it. Signed-off-by: Daira Hopwood --- diff --git a/src/allmydata/frontends/magic_folder.py b/src/allmydata/frontends/magic_folder.py index 7b40708f..59087ca0 100644 --- a/src/allmydata/frontends/magic_folder.py +++ b/src/allmydata/frontends/magic_folder.py @@ -248,6 +248,10 @@ class Uploader(QueueMixin): for child in children: assert isinstance(child, unicode), child d.addCallback(lambda ign, child=child: os.path.join(reldir_u, child)) + def _add_pending(relpath_u): + self._pending.add(relpath_u) + return relpath_u + d.addCallback(_add_pending) d.addCallback(self._process) d.addErrback(log.err)