From: Zac Medico Date: Tue, 20 May 2008 01:51:51 +0000 (-0000) Subject: In vardbapi.aux_get(), don't mark cacheed metadata invalid just because X-Git-Tag: v2.1.5.2~1 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=bd726eea031f8a6d2eba2cfc04f7def3496f69da;p=portage.git In vardbapi.aux_get(), don't mark cacheed metadata invalid just because some of the values are missing. (trunk r10375) svn path=/main/branches/2.1.2/; revision=10376 --- diff --git a/pym/portage.py b/pym/portage.py index 85c65da24..14d4dbfc9 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -6919,7 +6919,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)