Commit dc669148 authored by Jeremy Hylton's avatar Jeremy Hylton

Don't pass an argument to cacheMinimize(). The arg is ignored.

parent 3191978c
...@@ -14,8 +14,8 @@ ...@@ -14,8 +14,8 @@
This class is mixed into the database manager in App.ApplicationManager. This class is mixed into the database manager in App.ApplicationManager.
$Id: CacheManager.py,v 1.30 2003/11/05 05:54:12 fdrake Exp $''' $Id: CacheManager.py,v 1.31 2004/03/03 14:31:38 jeremy Exp $'''
__version__='$Revision: 1.30 $'[11:-2] __version__='$Revision: 1.31 $'[11:-2]
import time import time
...@@ -123,7 +123,8 @@ class CacheManager: ...@@ -123,7 +123,8 @@ class CacheManager:
def manage_minimize(self,value=1,REQUEST=None): def manage_minimize(self,value=1,REQUEST=None):
"Perform a full sweep through the cache" "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: if REQUEST is not None:
response=REQUEST['RESPONSE'] response=REQUEST['RESPONSE']
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment