Merge "remove useless if from slo"

This commit is contained in:
Jenkins 2013-09-16 20:46:15 +00:00 committed by Gerrit Code Review
commit 8e48dd6b7f
1 changed files with 1 additions and 2 deletions

View File

@ -348,8 +348,7 @@ class StaticLargeObject(object):
if len(sub_segments) > MAX_BUFFERED_SLO_SEGMENTS:
raise HTTPBadRequest(
'Too many buffered slo segments to delete.')
if sub_segments:
seg_data = sub_segments.pop(0)
seg_data = sub_segments.pop(0)
if seg_data.get('sub_slo'):
new_env = req.environ.copy()
new_env['REQUEST_METHOD'] = 'GET'