Fix _notify_empty typo

This commit is contained in:
Erik Johnston 2018-01-18 11:05:34 +00:00
parent 28b338ed9b
commit 17b54389fe

View File

@ -110,7 +110,7 @@ class BackgroundFileConsumer(object):
if self.bytes_queue.qsize() <= self._RESUME_ON_QUEUE_SIZE:
reactor.callFromThread(self._resume_paused_producer)
if self._notify_empty and self.bytes_queue.empty():
if self._notify_empty_deferred and self.bytes_queue.empty():
reactor.callFromThread(self._notify_empty)
bytes = self.bytes_queue.get()