empty disco cache after one minute. Fixes #1329

This commit is contained in:
Yann Leboulanger 2006-09-16 11:26:47 +00:00
parent f6df3bbbee
commit a5e64ddec9
1 changed files with 2 additions and 2 deletions

View File

@ -215,8 +215,8 @@ class ServicesCache:
ServiceCache instance.'''
def __init__(self, account):
self.account = account
self._items = CacheDictionary(15, getrefresh = False)
self._info = CacheDictionary(15, getrefresh = False)
self._items = CacheDictionary(1, getrefresh = True)
self._info = CacheDictionary(1, getrefresh = True)
self._cbs = {}
def _clean_closure(self, cb, type, addr):