From e1a2c28ec3b7499180a9f52a98dc2a2f02a1baf7 Mon Sep 17 00:00:00 2001 From: junboli Date: Sat, 15 Jul 2017 17:05:15 +0800 Subject: [PATCH] Fix redundant UTF-8 check In the file proxy/server.py, handle_request method does UTF-8 check twice. This patch is to fix it. Change-Id: I6db742bce6fa4fa9e935b15460037e0ec90e9373 Closes-Bug: #1704539 --- swift/proxy/server.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/swift/proxy/server.py b/swift/proxy/server.py index ec728d3875..4766a8244e 100644 --- a/swift/proxy/server.py +++ b/swift/proxy/server.py @@ -26,7 +26,6 @@ import functools import sys from eventlet import Timeout -import six from swift import __canonical_version__ as swift_version from swift.common import constraints @@ -462,9 +461,6 @@ class Application(object): try: controller, path_parts = self.get_controller(req) - p = req.path_info - if isinstance(p, six.text_type): - p = p.encode('utf-8') except APIVersionError: self.logger.increment('errors') return HTTPBadRequest(request=req)