Merge "Clean up unused function"

This commit is contained in:
Jenkins 2017-03-22 11:14:48 +00:00 committed by Gerrit Code Review
commit 23cc5d1f18

View File

@ -36,7 +36,7 @@ class FakeFilter(object):
def __call__(self, env, start_response):
path = SUB_PUT_POST_PATH
if env['REQUEST_METHOD'] is 'GET':
if env['REQUEST_METHOD'] == 'GET':
path = SUB_GET_PATH
# Make a subrequest that will be logged
@ -52,9 +52,6 @@ class FakeFilter(object):
resp = sub_req.get_response(self.app)
close_if_possible(resp.app_iter)
def _start_response(status, headers, exc_info=None):
return start_response(status, headers, exc_info)
return self.app(env, start_response)