Merge "Use exception.CinderException instead of Exception"
This commit is contained in:
commit
a1b1501579
@ -121,9 +121,8 @@ def get_backend():
|
|||||||
def is_admin_context(context):
|
def is_admin_context(context):
|
||||||
"""Indicates if the request context is an administrator."""
|
"""Indicates if the request context is an administrator."""
|
||||||
if not context:
|
if not context:
|
||||||
LOG.warning('Use of empty request context is deprecated',
|
raise exception.CinderException(
|
||||||
DeprecationWarning)
|
'Use of empty request context is deprecated')
|
||||||
raise Exception('die')
|
|
||||||
return context.is_admin
|
return context.is_admin
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user