Remove unused logging import
Change-Id: I6205e7d49277871323f1ff937bd62a14a5e0a788
This commit is contained in:
parent
2a2c8e733b
commit
7664c5d2a1
@ -13,14 +13,11 @@
|
||||
# limitations under the License.
|
||||
|
||||
from oslo_config import cfg
|
||||
from oslo_log import log as logging
|
||||
|
||||
from mistral import auth
|
||||
from mistral import exceptions as exc
|
||||
|
||||
|
||||
LOG = logging.getLogger(__name__)
|
||||
|
||||
CONF = cfg.CONF
|
||||
|
||||
|
||||
|
@ -16,7 +16,6 @@
|
||||
import base64
|
||||
|
||||
from keystoneclient.v3 import client as keystone_client
|
||||
import logging
|
||||
from oslo_config import cfg
|
||||
import oslo_messaging as messaging
|
||||
from oslo_serialization import jsonutils
|
||||
@ -29,7 +28,6 @@ from mistral import exceptions as exc
|
||||
from mistral import serialization
|
||||
from mistral import utils
|
||||
|
||||
LOG = logging.getLogger(__name__)
|
||||
CONF = cfg.CONF
|
||||
_CTX_THREAD_LOCAL_NAME = "MISTRAL_APP_CTX_THREAD_LOCAL"
|
||||
ALLOWED_WITHOUT_AUTH = ['/', '/v2/']
|
||||
|
@ -15,7 +15,6 @@
|
||||
# limitations under the License.
|
||||
|
||||
from oslo_config import cfg
|
||||
from oslo_log import log as logging
|
||||
from osprofiler import profiler
|
||||
|
||||
from mistral import context as auth_ctx
|
||||
@ -25,9 +24,6 @@ from mistral.executors import base as exe
|
||||
from mistral.rpc import base
|
||||
|
||||
|
||||
LOG = logging.getLogger(__name__)
|
||||
|
||||
|
||||
_ENGINE_CLIENT = None
|
||||
_EXECUTOR_CLIENT = None
|
||||
_EVENT_ENGINE_CLIENT = None
|
||||
|
@ -12,16 +12,12 @@
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
from oslo_log import log as logging
|
||||
import oslo_messaging as messaging
|
||||
|
||||
from mistral import context as ctx
|
||||
from mistral.rpc import base as rpc
|
||||
|
||||
|
||||
LOG = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class OsloRPCServer(rpc.RPCServer):
|
||||
def __init__(self, conf):
|
||||
super(OsloRPCServer, self).__init__(conf)
|
||||
|
@ -13,15 +13,11 @@
|
||||
# limitations under the License.
|
||||
|
||||
from eventlet import event
|
||||
from oslo_log import log
|
||||
from oslo_service import service
|
||||
|
||||
from mistral.service import coordination
|
||||
|
||||
|
||||
LOG = log.getLogger(__name__)
|
||||
|
||||
|
||||
class MistralService(service.Service):
|
||||
"""Base class for Mistral services.
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user