[Zope-Checkins] CVS: Zope/lib/python/App - CacheManager.py:1.31
Jeremy Hylton
jeremy at zope.com
Wed Mar 3 09:32:09 EST 2004
Update of /cvs-repository/Zope/lib/python/App
In directory cvs.zope.org:/tmp/cvs-serv18899/App
Modified Files:
CacheManager.py
Log Message:
Don't pass an argument to cacheMinimize(). The arg is ignored.
=== Zope/lib/python/App/CacheManager.py 1.30 => 1.31 ===
--- Zope/lib/python/App/CacheManager.py:1.30 Wed Nov 5 00:54:12 2003
+++ Zope/lib/python/App/CacheManager.py Wed Mar 3 09:31:38 2004
@@ -123,7 +123,8 @@
def manage_minimize(self,value=1,REQUEST=None):
"Perform a full sweep through the cache"
- self._getDB().cacheMinimize(value)
+ # XXX Add a deprecation warning about value?
+ self._getDB().cacheMinimize()
if REQUEST is not None:
response=REQUEST['RESPONSE']
More information about the Zope-Checkins
mailing list