d2c6bc64cd
Change-Id: I066239f0eb380350e411368d8f4eddf7722fc252
14 lines
271 B
Plaintext
14 lines
271 B
Plaintext
from spanner import exceptions
|
|
|
|
DASHBOARD = 'operations'
|
|
ADD_INSTALLED_APPS = [
|
|
'spanner.operations'
|
|
]
|
|
DEFAULT = True
|
|
|
|
ADD_EXCEPTIONS = {
|
|
'recoverable': exceptions.RECOVERABLE,
|
|
'not_found': exceptions.NOT_FOUND,
|
|
'unauthorized': exceptions.UNAUTHORIZED,
|
|
}
|