From c1153b15ff0cb00d54011782e929eb113f9ecb0d Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Wed, 3 May 2006 19:02:34 +0000 Subject: Catch an uncaught CacheCorruption for the traceback from bug #126692. svn path=/main/trunk/; revision=3313 --- pym/cache/util.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'pym/cache') diff --git a/pym/cache/util.py b/pym/cache/util.py index 7e5e1f771..204b549b6 100644 --- a/pym/cache/util.py +++ b/pym/cache/util.py @@ -41,7 +41,13 @@ def mirror_cache(valid_nodes_iterable, src_cache, trg_cache, eclass_cache=None, pass if write_it: - if entry.get("INHERITED",""): + try: + inherited = entry.get("INHERITED", None) + except cache_errors.CacheError, ce: + noise.exception(x, ce) + del ce + continue + if inherited: if src_cache.complete_eclass_entries: if not "_eclasses_" in entry: noise.corruption(x,"missing _eclasses_ field") -- cgit v1.2.3-1-g7c22