[Mailman-Developers] re: Much cpu/memory load

Barry A. Warsaw barry@python.org
Thu Oct 31 21:20:14 2002


A quick fix for the Archiver problems, until I can debug them more is
to add the following in ArchRunner.py, just under the "class
ArchRunner" line:

class ArchRunner(Runner):
    QDIR = mm_cfg.ARCHQUEUE_DIR
    SLEEPTIME = mm_cfg.minutes(10)

    def _dispose(self, mlist, msg, msgdata):

This at least makes ArchRunner only run once per 10 minutes.

-Barry