From 534f569e5abc017b137957786f15a67f3f4e07af Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Thu, 21 Feb 2013 10:55:46 -0500 Subject: Add more stuff to the exception reporting skip list. For me, this reduces the time from traceback to dialog from at least ten seconds to almost instantaneous. And it's not helpful stuff either. If you see it take a very long time to generate a traceback file, please check the file and see if it's because something is being pickled that doesn't need to be. --- pyanaconda/exception.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyanaconda/exception.py b/pyanaconda/exception.py index 6df725143..5701ed2ca 100644 --- a/pyanaconda/exception.py +++ b/pyanaconda/exception.py @@ -167,6 +167,9 @@ def initExceptionHandling(anaconda): conf = Config(programName="anaconda", programVersion=isys.getAnacondaVersion(), attrSkipList=["_intf._actions", + "_intf._currentAction._xklwrapper", + "_intf._currentAction.language.translations", + "_intf._currentAction.language.locales", "_intf.storage.bootloader.password", "_intf.storage.data", "_intf.storage.encryptionPassphrase", -- cgit