summaryrefslogtreecommitdiff
path: root/oslo_middleware/http_proxy_to_wsgi.py
diff options
context:
space:
mode:
Diffstat (limited to 'oslo_middleware/http_proxy_to_wsgi.py')
-rw-r--r--oslo_middleware/http_proxy_to_wsgi.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/oslo_middleware/http_proxy_to_wsgi.py b/oslo_middleware/http_proxy_to_wsgi.py
index 701e5c8..632f5ca 100644
--- a/oslo_middleware/http_proxy_to_wsgi.py
+++ b/oslo_middleware/http_proxy_to_wsgi.py
@@ -11,7 +11,6 @@
# 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.
-from debtcollector import removals
from oslo_config import cfg
from oslo_middleware import base
@@ -92,8 +91,3 @@ class HTTPProxyToWSGI(base.ConfigurableMiddleware):
v = req.environ.get("HTTP_X_FORWARDED_PREFIX")
if v:
req.environ['SCRIPT_NAME'] = v + req.environ['SCRIPT_NAME']
-
-
-@removals.remove
-class HTTPProxyToWSGIMiddleware(HTTPProxyToWSGI):
- """Placeholder for backward compatibility"""