Show More
@@ -421,7 +421,7 b' class RepoFilesView(RepoAppView):' | |||
|
421 | 421 | with ReentrantLock(d_cache, reentrant_lock_key): |
|
422 | 422 | # This is also a cache key |
|
423 | 423 | use_cached_archive = False |
|
424 | if archive_name_key in d_cache and not archive_cache_disable: | |
|
424 | if not archive_cache_disable and archive_name_key in d_cache: | |
|
425 | 425 | reader, tag = d_cache.get(archive_name_key, read=True, tag=True, retry=True) |
|
426 | 426 | use_cached_archive = True |
|
427 | 427 | log.debug('Found cached archive as key=%s tag=%s, serving archive from cache reader=%s', |
General Comments 0
You need to be logged in to leave comments.
Login now