projects
/
tahoe-lafs
/
tahoe-lafs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3b249a7
)
Remove old unused append to deque function from downloader
author
David Stainton
<dstainton415@gmail.com>
Thu, 30 Jul 2015 20:57:29 +0000
(13:57 -0700)
committer
Daira Hopwood
<daira@jacaranda.org>
Thu, 1 Oct 2015 00:19:46 +0000
(
01:19
+0100)
src/allmydata/frontends/magic_folder.py
patch
|
blob
|
history
diff --git
a/src/allmydata/frontends/magic_folder.py
b/src/allmydata/frontends/magic_folder.py
index c5195f63150847dbf2e1faa8772424debb818679..4bc6b910be3bfb605c10736104de98ae2da9f5d0 100644
(file)
--- a/
src/allmydata/frontends/magic_folder.py
+++ b/
src/allmydata/frontends/magic_folder.py
@@
-526,13
+526,3
@@
class Downloader(QueueMixin):
def _write_downloaded_file(self, name, file_contents):
print "_write_downloaded_file: no-op."
-
- # FIXME move to QueueMixin
- def _append_to_deque(self, path):
- if path in self._download_scan_batch.keys():
- return
- self._deque.append(path)
- self._pending.add(path)
- self._count('download_objects_queued')
- if self.is_ready:
- reactor.callLater(0, self._turn_deque)