There is a warning message logged by warnings.warn,
it should be replaced by LOG.warning.
Change-Id: Ifcff0ebeb13b07420f6b8073b094c3b1687999e8
import threading
import time
import uuid
-import warnings
from oslo_config import cfg
from oslo_db import exception as db_exc
def is_admin_context(context):
"""Indicates if the request context is an administrator."""
if not context:
- warnings.warn(_('Use of empty request context is deprecated'),
- DeprecationWarning)
+ LOG.warning(_LW('Use of empty request context is deprecated'),
+ DeprecationWarning)
raise Exception('die')
return context.is_admin