Remove unused logging import

Change-Id: I6205e7d49277871323f1ff937bd62a14a5e0a788
This commit is contained in:
Sharat Sharma 2017-05-02 12:30:36 +05:30 committed by Dougal Matthews
parent 2a2c8e733b
commit 7664c5d2a1
5 changed files with 0 additions and 17 deletions

View File

@ -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

View File

@ -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/']

View File

@ -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

View File

@ -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)

View File

@ -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.