]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Remove middleware oslo-incubator module
authorIhar Hrachyshka <ihrachys@redhat.com>
Wed, 20 May 2015 21:17:19 +0000 (23:17 +0200)
committerIhar Hrachyshka <ihrachys@redhat.com>
Wed, 20 May 2015 21:17:19 +0000 (23:17 +0200)
The module was used during Kilo cycle to provide backwards compatibility
for users that upgrade to the release without updating their
api-paste.ini. We have issued the deprecation warning for a cycle now,
so we should be ok to just drop the compatibility layer.

Note that the change may require a notion in release notes to make sure
everyone is notified, even if they don't look through their logs.

DocImpact

Change-Id: I41693f4613b5a69a01a33e54f90e82177f42e1af

neutron/openstack/common/middleware/__init__.py [deleted file]
neutron/openstack/common/middleware/catch_errors.py [deleted file]
neutron/openstack/common/middleware/request_id.py [deleted file]
openstack-common.conf

diff --git a/neutron/openstack/common/middleware/__init__.py b/neutron/openstack/common/middleware/__init__.py
deleted file mode 100644 (file)
index e69de29..0000000
diff --git a/neutron/openstack/common/middleware/catch_errors.py b/neutron/openstack/common/middleware/catch_errors.py
deleted file mode 100644 (file)
index 12c543b..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-#    Licensed under the Apache License, Version 2.0 (the "License"); you may
-#    not use this file except in compliance with the License. You may obtain
-#    a copy of the License at
-#
-#         http://www.apache.org/licenses/LICENSE-2.0
-#
-#    Unless required by applicable law or agreed to in writing, software
-#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
-#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
-#    License for the specific language governing permissions and limitations
-#    under the License.
-
-"""Compatibility shim for Kilo, while operators migrate to oslo.middleware."""
-
-from oslo_middleware import catch_errors
-
-from neutron.openstack.common import versionutils
-
-
-@versionutils.deprecated(as_of=versionutils.deprecated.KILO,
-                         in_favor_of='oslo.middleware.CatchErrors')
-class CatchErrorsMiddleware(catch_errors.CatchErrors):
-    pass
diff --git a/neutron/openstack/common/middleware/request_id.py b/neutron/openstack/common/middleware/request_id.py
deleted file mode 100644 (file)
index 2992968..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-#    Licensed under the Apache License, Version 2.0 (the "License"); you may
-#    not use this file except in compliance with the License. You may obtain
-#    a copy of the License at
-#
-#         http://www.apache.org/licenses/LICENSE-2.0
-#
-#    Unless required by applicable law or agreed to in writing, software
-#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
-#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
-#    License for the specific language governing permissions and limitations
-#    under the License.
-
-"""Compatibility shim for Kilo, while operators migrate to oslo.middleware."""
-
-from oslo_middleware import request_id
-
-from neutron.openstack.common import versionutils
-
-
-ENV_REQUEST_ID = 'openstack.request_id'
-HTTP_RESP_HEADER_REQUEST_ID = 'x-openstack-request-id'
-
-
-@versionutils.deprecated(as_of=versionutils.deprecated.KILO,
-                         in_favor_of='oslo.middleware.RequestId')
-class RequestIdMiddleware(request_id.RequestId):
-    pass
index 1793a9d3ab4fecb0929b729b4e8d327204355ed6..549005c12ec441e357fc796ffa61cc1c3d0f6c88 100644 (file)
@@ -5,7 +5,6 @@ module=eventlet_backdoor
 module=fileutils
 module=install_venv_common
 module=loopingcall
-module=middleware
 module=periodic_task
 module=policy
 module=service