diff options
| author | bwarsaw | 2002-08-08 21:21:44 +0000 |
|---|---|---|
| committer | bwarsaw | 2002-08-08 21:21:44 +0000 |
| commit | 64a2c20fc012715bb30c98c3aaaa099b73a57642 (patch) | |
| tree | 22c5ae0f884889a834228d950316d826656ed2ec | |
| parent | adb171dc9b5da3a6c576059d1dcb9320406611e6 (diff) | |
| download | mailman-64a2c20fc012715bb30c98c3aaaa099b73a57642.tar.gz mailman-64a2c20fc012715bb30c98c3aaaa099b73a57642.tar.zst mailman-64a2c20fc012715bb30c98c3aaaa099b73a57642.zip | |
| -rw-r--r-- | Mailman/Queue/Runner.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/Queue/Runner.py b/Mailman/Queue/Runner.py index ffab34398..c049d874e 100644 --- a/Mailman/Queue/Runner.py +++ b/Mailman/Queue/Runner.py @@ -17,7 +17,6 @@ """Generic queue runner class. """ -import random import time import traceback import weakref @@ -35,6 +34,7 @@ from Mailman.Logging.Syslog import syslog class Runner: + QDIR = None SLEEPTIME = mm_cfg.QRUNNER_SLEEP_TIME def __init__(self, slice=None, numslices=1): @@ -160,7 +160,7 @@ class Runner: self._kids.update(kids) if keepqueued: self._switchboard.enqueue(msg, msgdata) - + # Mapping of listnames to MailList instances as a weak value dictionary. _listcache = weakref.WeakValueDictionary() |
