make history longer

This commit is contained in:
meejah 2016-02-01 09:03:12 -07:00 committed by Brian Warner
parent 7e84b0cf57
commit 8ba2912ff4

View File

@ -130,7 +130,7 @@ class QueueMixin(HookMixin):
self._deque = deque()
# do we also want to bound on "maximum age"?
self._process_history = deque(maxlen=10)
self._process_history = deque(maxlen=20)
self._lazy_tail = defer.succeed(None)
self._stopped = False
self._turn_delay = 0