##// END OF EJS Templates
fix(caches): removed cacheKey cleanup logic as its proven to fail, and is not reliable.
super-admin -
r5287:486bcf43 default
parent child Browse files
Show More
@@ -30,7 +30,7 b' from rhodecode.lib.hash_utils import sha'
30 from rhodecode.lib.str_utils import safe_bytes
30 from rhodecode.lib.str_utils import safe_bytes
31 from rhodecode.lib.type_utils import str2bool # noqa :required by imports from .utils
31 from rhodecode.lib.type_utils import str2bool # noqa :required by imports from .utils
32
32
33 from . import region_meta, cache_key_meta
33 from . import region_meta
34
34
35 log = logging.getLogger(__name__)
35 log = logging.getLogger(__name__)
36
36
@@ -352,7 +352,6 b' class InvalidationContext(object):'
352 cache_state_uid = first_cache_obj.cache_state_uid
352 cache_state_uid = first_cache_obj.cache_state_uid
353 cache_obj = CacheKey(self.cache_key, cache_args=new_cache_args,
353 cache_obj = CacheKey(self.cache_key, cache_args=new_cache_args,
354 cache_state_uid=cache_state_uid)
354 cache_state_uid=cache_state_uid)
355 cache_key_meta.cache_keys_by_pid.add(self.proc_key)
356
355
357 return cache_obj
356 return cache_obj
358
357
1 NO CONTENT: file was removed
NO CONTENT: file was removed
General Comments 0
You need to be logged in to leave comments. Login now