Inconsistency Description
1. What is the problem? This is not a bug fix but to attend naming inconstistency at this early stage of the project. 2. What is the solution for the problem? To correct and maintain a consistent naming sequence for project. 3. What features need to be implemented for Tricircle? None Change-Id: I84d6e2aa76f0e61f39f20cacf19fe6333d82aa1f Closes-Bug: #1571136
This commit is contained in:
parent
098af11b85
commit
db09651b6b
@ -23,7 +23,6 @@ HOST_IP=127.0.0.1
|
|||||||
# Specify port for central Neutron server
|
# Specify port for central Neutron server
|
||||||
# TRICIRCLE_NEUTRON_PORT=20001
|
# TRICIRCLE_NEUTRON_PORT=20001
|
||||||
|
|
||||||
TRICIRCLE_START_SERVICES=True
|
|
||||||
enable_plugin tricircle https://github.com/openstack/tricircle/
|
enable_plugin tricircle https://github.com/openstack/tricircle/
|
||||||
|
|
||||||
disable_service horizon
|
# disable_service horizon
|
||||||
|
@ -23,7 +23,7 @@ from oslo_log import log as logging
|
|||||||
from oslo_utils import uuidutils
|
from oslo_utils import uuidutils
|
||||||
|
|
||||||
import tricircle.common.context as t_context
|
import tricircle.common.context as t_context
|
||||||
import tricircle.common.exceptions as t_exc
|
import tricircle.common.exceptions as t_exceptions
|
||||||
from tricircle.common.i18n import _
|
from tricircle.common.i18n import _
|
||||||
from tricircle.common.i18n import _LE
|
from tricircle.common.i18n import _LE
|
||||||
from tricircle.common import policy
|
from tricircle.common import policy
|
||||||
@ -125,7 +125,7 @@ class PodsController(rest.RestController):
|
|||||||
|
|
||||||
try:
|
try:
|
||||||
return {'pod': db_api.get_pod(context, _id)}
|
return {'pod': db_api.get_pod(context, _id)}
|
||||||
except t_exc.ResourceNotFound:
|
except t_exceptions.ResourceNotFound:
|
||||||
pecan.abort(404, _('Pod not found'))
|
pecan.abort(404, _('Pod not found'))
|
||||||
return
|
return
|
||||||
|
|
||||||
@ -159,7 +159,7 @@ class PodsController(rest.RestController):
|
|||||||
core.delete_resource(context, models.Pod, _id)
|
core.delete_resource(context, models.Pod, _id)
|
||||||
pecan.response.status = 200
|
pecan.response.status = 200
|
||||||
return {}
|
return {}
|
||||||
except t_exc.ResourceNotFound:
|
except t_exceptions.ResourceNotFound:
|
||||||
return Response(_('Pod not found'), 404)
|
return Response(_('Pod not found'), 404)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
LOG.exception(_LE('Failed to delete pod: %(pod_id)s,'
|
LOG.exception(_LE('Failed to delete pod: %(pod_id)s,'
|
||||||
|
@ -19,7 +19,7 @@ from oslo_log import log as logging
|
|||||||
|
|
||||||
from tricircle.common import constants
|
from tricircle.common import constants
|
||||||
import tricircle.common.context as t_context
|
import tricircle.common.context as t_context
|
||||||
import tricircle.common.exceptions as t_exc
|
import tricircle.common.exceptions as t_exceptions
|
||||||
from tricircle.common.i18n import _
|
from tricircle.common.i18n import _
|
||||||
from tricircle.common.i18n import _LE
|
from tricircle.common.i18n import _LE
|
||||||
from tricircle.common import policy
|
from tricircle.common import policy
|
||||||
@ -135,7 +135,7 @@ class RoutingController(rest.RestController):
|
|||||||
|
|
||||||
try:
|
try:
|
||||||
return {'routing': db_api.get_resource_routing(context, _id)}
|
return {'routing': db_api.get_resource_routing(context, _id)}
|
||||||
except t_exc.ResourceNotFound:
|
except t_exceptions.ResourceNotFound:
|
||||||
return utils.format_api_error(
|
return utils.format_api_error(
|
||||||
404, _('Resource routing not found'))
|
404, _('Resource routing not found'))
|
||||||
|
|
||||||
@ -149,7 +149,7 @@ class RoutingController(rest.RestController):
|
|||||||
|
|
||||||
try:
|
try:
|
||||||
db_api.get_resource_routing(context, _id)
|
db_api.get_resource_routing(context, _id)
|
||||||
except t_exc.ResourceNotFound:
|
except t_exceptions.ResourceNotFound:
|
||||||
return utils.format_api_error(404,
|
return utils.format_api_error(404,
|
||||||
_('Resource routing not found'))
|
_('Resource routing not found'))
|
||||||
try:
|
try:
|
||||||
@ -172,7 +172,7 @@ class RoutingController(rest.RestController):
|
|||||||
|
|
||||||
try:
|
try:
|
||||||
db_api.get_resource_routing(context, _id)
|
db_api.get_resource_routing(context, _id)
|
||||||
except t_exc.ResourceNotFound:
|
except t_exceptions.ResourceNotFound:
|
||||||
return utils.format_api_error(404,
|
return utils.format_api_error(404,
|
||||||
_('Resource routing not found'))
|
_('Resource routing not found'))
|
||||||
|
|
||||||
@ -203,7 +203,7 @@ class RoutingController(rest.RestController):
|
|||||||
try:
|
try:
|
||||||
# find the pod through the pod_id and verify whether it exists
|
# find the pod through the pod_id and verify whether it exists
|
||||||
db_api.get_pod(context, new_pod_id)
|
db_api.get_pod(context, new_pod_id)
|
||||||
except t_exc.ResourceNotFound:
|
except t_exceptions.ResourceNotFound:
|
||||||
return utils.format_api_error(
|
return utils.format_api_error(
|
||||||
400, _("The pod %(new_pod_id)s doesn't"
|
400, _("The pod %(new_pod_id)s doesn't"
|
||||||
" exist") % {'new_pod_id': new_pod_id})
|
" exist") % {'new_pod_id': new_pod_id})
|
||||||
|
@ -17,7 +17,7 @@ from oslo_config import cfg
|
|||||||
from oslo_middleware import request_id
|
from oslo_middleware import request_id
|
||||||
from oslo_service import service
|
from oslo_service import service
|
||||||
|
|
||||||
from tricircle.common import exceptions as t_exc
|
from tricircle.common import exceptions as t_exceptions
|
||||||
from tricircle.common.i18n import _
|
from tricircle.common.i18n import _
|
||||||
|
|
||||||
|
|
||||||
@ -31,7 +31,7 @@ def auth_app(app):
|
|||||||
# version, passing "project" as empty string to bypass it
|
# version, passing "project" as empty string to bypass it
|
||||||
app = auth_token.AuthProtocol(app, {'project': ''})
|
app = auth_token.AuthProtocol(app, {'project': ''})
|
||||||
else:
|
else:
|
||||||
raise t_exc.InvalidConfigurationOption(
|
raise t_exceptions.InvalidConfigurationOption(
|
||||||
opt_name='auth_strategy', opt_value=cfg.CONF.auth_strategy)
|
opt_name='auth_strategy', opt_value=cfg.CONF.auth_strategy)
|
||||||
|
|
||||||
return app
|
return app
|
||||||
|
Loading…
Reference in New Issue
Block a user