Changeset 310
- Timestamp:
- 06/14/05 13:31:25
- Files:
-
- trunk/cherrypy/__init__.py (modified) (1 diff)
- trunk/cherrypy/lib/filter/cachefilter.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/__init__.py
r161 r310 1 __version__ = '2. 0.0'1 __version__ = '2.1.0 alpha' trunk/cherrypy/lib/filter/cachefilter.py
r270 r310 60 60 while True: 61 61 expirationTime, objSize, objKey = self.expirationQueue.get(block=True, timeout=None) 62 while (time.time() < expirationTime): 62 # expireCache runs in a separate thread which the servers are 63 # not aware of. It's possible that "time" will be set to None 64 # arbitrarily, so we check "while time" to avoid exceptions. 65 # See tickets #99 and #180 for more information. 66 while time and (time.time() < expirationTime): 63 67 time.sleep(0.1) 64 68 try:

