54a6db0a83
currently we can't handle api exceptions, so add mistral api exception to Recoverable list Change-Id: I7afeb0b1c900b9fb1854a9eebc768acf0a9c4c89 Closes-Bug: #1483653
12 lines
269 B
Plaintext
12 lines
269 B
Plaintext
from mistraldashboard import exceptions
|
|
|
|
DASHBOARD = 'mistral'
|
|
ADD_INSTALLED_APPS = ['mistraldashboard']
|
|
DEFAULT = True
|
|
|
|
ADD_EXCEPTIONS = {
|
|
'recoverable': exceptions.RECOVERABLE,
|
|
'not_found': exceptions.NOT_FOUND,
|
|
'unauthorized': exceptions.UNAUTHORIZED,
|
|
}
|