Avoid suppressing underlying error when deploy.loadapp fails

Raise log level at the first load attempt. If there is a
fundamental problem with the environment, a Lookup error
is not helpful in troubleshooting the problem further.

Fix bug 1210236

(cherry picked from commit: 696e9f3fc8)

Change-Id: I55aa11a0e5a37dbef3f0c1b55aa4c9c11bbf55d9
This commit is contained in:
armando-migliaccio 2013-10-14 12:37:24 -07:00
parent e331eb3cee
commit 58ff51d62a
1 changed files with 2 additions and 2 deletions

View File

@ -95,11 +95,11 @@ def serve_wsgi(cls):
service = cls.create()
service.start()
except RuntimeError:
LOG.warn(_('Attempting fallback to old Quantum api-paste config'))
LOG.exception(_('Error occurred: trying old api-paste.ini.'))
service = cls.create('quantum')
service.start()
except Exception:
LOG.exception(_('In serve_wsgi()'))
LOG.exception(_('Unrecoverable error: please check log for details.'))
raise
return service