summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-05-20 01:51:12 +0000
committerZac Medico <zmedico@gentoo.org>2008-05-20 01:51:12 +0000
commit77c1ecc2c7c016e1e815743d8a46899c16acc47e (patch)
treeebdc9a0309e7b8c2a5225bbb8a23c9195d15249f
parentInside vardbapi.aux_get(), do more validation on the cache data to (diff)
downloadportage-multirepo-77c1ecc2c7c016e1e815743d8a46899c16acc47e.tar.gz
portage-multirepo-77c1ecc2c7c016e1e815743d8a46899c16acc47e.tar.bz2
portage-multirepo-77c1ecc2c7c016e1e815743d8a46899c16acc47e.zip
In vardbapi.aux_get(), don't mark cacheed metadata invalid just because
some of the values are missing. svn path=/main/trunk/; revision=10375
-rw-r--r--pym/portage/dbapi/vartree.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py
index fc0fca28..87fff90d 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)