mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-23 23:02:25 +00:00
Delay only the download scan not the turning of our event queue.
Author: David Stainton <david@leastauthority.com> Signed-off-by: Daira Hopwood <daira@jacaranda.org>
This commit is contained in:
parent
9d7785f57b
commit
2043bed3f1
@ -543,7 +543,6 @@ class Downloader(QueueMixin, WriteFileMixin):
|
||||
self._upload_readonly_dircap = upload_readonly_dircap
|
||||
self._is_upload_pending = is_upload_pending
|
||||
self._umask = umask
|
||||
self._turn_delay = self.REMOTE_SCAN_INTERVAL
|
||||
|
||||
def start_scanning(self):
|
||||
self._log("start_scanning")
|
||||
@ -680,7 +679,7 @@ class Downloader(QueueMixin, WriteFileMixin):
|
||||
return d
|
||||
|
||||
def _when_queue_is_empty(self):
|
||||
d = task.deferLater(self._clock, self._turn_delay, self._scan_remote_collective)
|
||||
d = task.deferLater(self._clock, self.REMOTE_SCAN_INTERVAL, self._scan_remote_collective)
|
||||
d.addBoth(self._logcb, "after _scan_remote_collective 1")
|
||||
d.addCallback(lambda ign: self._turn_deque())
|
||||
return d
|
||||
|
Loading…
Reference in New Issue
Block a user