The problem is that Pylons errors.py is importing from /usr/lib...
bypassing settings from fcgi file. Exception is throwed by
"registry.restorer.save_registry_state(environ)", few lines before
there is a code which could be guilty ;) is it?
##############
from paste.evalexception.middleware import *
from paste.exceptions.formatter import *
.....
.....
##### is this causing this problem ?
exc_info = sys.exc_info()
for expected in environ.get('paste.expected_exceptions',
[]):
if isinstance(exc_info[1], expected):
raise
# Tell the Registry to save its StackedObjectProxies
current state
# for later restoration
registry.restorer.save_registry_state(environ)
#########################
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"pylons-discuss" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/pylons-discuss?hl=en
-~----------~----~----~----~------~----~------~--~---