From: Zac Medico Date: Tue, 20 May 2008 01:51:12 +0000 (-0000) Subject: In vardbapi.aux_get(), don't mark cacheed metadata invalid just because X-Git-Tag: v2.2_pre7~3 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=77c1ecc2c7c016e1e815743d8a46899c16acc47e;p=portage.git In vardbapi.aux_get(), don't mark cacheed metadata invalid just because some of the values are missing. svn path=/main/trunk/; revision=10375 --- diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py index fc0fca28d..87fff90d1 100644 --- a/pym/portage/dbapi/vartree.py +++ b/pym/portage/dbapi/vartree.py @@ -634,7 +634,6 @@ class vardbapi(dbapi): if cache_incomplete: # Allow self._aux_cache_keys to change without a cache version # bump and efficiently recycle partial cache whenever possible. - cache_valid = False pull_me = cache_incomplete.union(wants) else: pull_me = set(wants).difference(cache_these)