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 Change-Id: I55aa11a0e5a37dbef3f0c1b55aa4c9c11bbf55d9
This commit is contained in:
parent
abac0fcf1c
commit
bf1b5b8879
@ -95,11 +95,11 @@ def serve_wsgi(cls):
|
|||||||
service = cls.create()
|
service = cls.create()
|
||||||
service.start()
|
service.start()
|
||||||
except RuntimeError:
|
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 = cls.create('quantum')
|
||||||
service.start()
|
service.start()
|
||||||
except Exception:
|
except Exception:
|
||||||
LOG.exception(_('In serve_wsgi()'))
|
LOG.exception(_('Unrecoverable error: please check log for details.'))
|
||||||
raise
|
raise
|
||||||
|
|
||||||
return service
|
return service
|
||||||
|
Loading…
x
Reference in New Issue
Block a user