Move the identifier module into heat.common

It is used by both the engine and the client APIs, so it doesn't belong in
the engine.

Change-Id: I45306fd8293d1d859fde5fda9cdcf5fb0588aa2d
Signed-off-by: Zane Bitter <zbitter@redhat.com>
This commit is contained in:
Zane Bitter 2012-11-30 11:38:44 +01:00
parent 07b312329e
commit b35cc6d06e
12 changed files with 11 additions and 11 deletions

View File

@ -28,7 +28,7 @@ from heat.common import wsgi
from heat.engine import rpcapi as engine_rpcapi
from heat.engine import format
import heat.engine.api as engine_api
from heat.engine import identifier
from heat.common import identifier
import heat.openstack.common.rpc.common as rpc_common

View File

@ -19,7 +19,7 @@ from webob import exc
from heat.api.openstack.v1 import util
from heat.common import wsgi
from heat.engine import api as engine_api
from heat.engine import identifier
from heat.common import identifier
from heat.engine import rpcapi as engine_rpcapi
import heat.openstack.common.rpc.common as rpc_common
from heat.openstack.common.gettextutils import _

View File

@ -18,7 +18,7 @@ import itertools
from heat.api.openstack.v1 import util
from heat.common import wsgi
from heat.engine import api as engine_api
from heat.engine import identifier
from heat.common import identifier
from heat.engine import rpcapi as engine_rpcapi
import heat.openstack.common.rpc.common as rpc_common

View File

@ -16,7 +16,7 @@
from webob import exc
from functools import wraps
from heat.engine import identifier
from heat.common import identifier
def tenant_local(handler):

View File

@ -15,7 +15,7 @@
from heat.db import api as db_api
from heat.common import exception
from heat.engine import identifier
from heat.common import identifier
from heat.openstack.common import log as logging
logger = logging.getLogger(__name__)

View File

@ -18,7 +18,7 @@ import functools
from heat.common import exception
from heat.engine import dependencies
from heat.engine import identifier
from heat.common import identifier
from heat.engine import resource
from heat.engine import template
from heat.engine import timestamp

View File

@ -19,7 +19,7 @@ from datetime import datetime
from heat.engine import event
from heat.common import exception
from heat.db import api as db_api
from heat.engine import identifier
from heat.common import identifier
from heat.engine import timestamp
from heat.engine.properties import Properties

View File

@ -20,7 +20,7 @@ from heat.common import context
from heat.db import api as db_api
from heat.engine import api
from heat.engine.event import Event
from heat.engine import identifier
from heat.common import identifier
from heat.engine import parser
from heat.engine import resources
from heat.engine import watchrule

View File

@ -27,7 +27,7 @@ import urlparse
from heat.common import config
from heat.common import context
from heat.engine import identifier
from heat.common import identifier
from heat.openstack.common import cfg
from heat.openstack.common import rpc
import heat.openstack.common.rpc.common as rpc_common

View File

@ -28,7 +28,7 @@ import webob.exc
from heat.common import config
from heat.common import context
from heat.engine import identifier
from heat.common import identifier
from heat.openstack.common import cfg
from heat.openstack.common import rpc
import heat.openstack.common.rpc.common as rpc_common

View File

@ -19,7 +19,7 @@ from nose.plugins.attrib import attr
import mox
import json
from heat.engine import identifier
from heat.common import identifier
@attr(tag=['unit', 'identifier'])