Changeset 72 for branches/3.0/turbomail/managers/demand.py
- Timestamp:
- 11/09/07 05:31:49 (1 year ago)
- Files:
-
- 1 modified
-
branches/3.0/turbomail/managers/demand.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/3.0/turbomail/managers/demand.py
r68 r72 8 8 log = logging.getLogger("turbomail.manager") 9 9 10 import turbomail 10 from turbomail.exceptions import * 11 11 from turbomail.api import Manager 12 12 from turbomail.exceptions import ProviderExhaustedException 13 from turbomail.control import interface as turbomail 13 14 14 15 import math, copy 15 16 from Queue import Queue, Empty 16 17 from threading import Event, Thread 17 from turbomail.dispatch import Dispatch18 18 19 19 __all__ = ['load'] … … 85 85 86 86 def worker(self): 87 log.debug("Requesting new provider instance .")87 log.debug("Requesting new provider instance from.") 88 88 provider = turbomail.provider.new() 89 89 if not provider: raise ManagerException, "Unable to allocate new provider."
