diff options
author | Zac Medico <zmedico@gentoo.org> | 2009-02-23 03:16:05 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2009-02-23 03:16:05 +0000 |
commit | f1f9f6511f698a68ff76b5f1e3ec90906426ab52 (patch) | |
tree | 572b2154a6a28cba09333e1b6fb47f352b0dad28 | |
parent | b1487ac5dfe57cb16ec4575b7a2a8ac570fc2bc0 (diff) | |
download | portage-f1f9f6511f698a68ff76b5f1e3ec90906426ab52.tar.gz portage-f1f9f6511f698a68ff76b5f1e3ec90906426ab52.tar.bz2 portage-f1f9f6511f698a68ff76b5f1e3ec90906426ab52.zip |
Bump vardbapi._owners_cache_version from 1 to 2 since hash value encoding
is now hardcoded as utf_8.
svn path=/main/trunk/; revision=12690
-rw-r--r-- | pym/portage/dbapi/vartree.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py index c13af9263..9a2cc2300 100644 --- a/pym/portage/dbapi/vartree.py +++ b/pym/portage/dbapi/vartree.py @@ -702,7 +702,7 @@ class vardbapi(dbapi): "|".join(_excluded_dirs) + r')$') _aux_cache_version = "1" - _owners_cache_version = "1" + _owners_cache_version = "2" # Number of uncached packages to trigger cache update, since # it's wasteful to update it for every vdb change. |