Merge branch 'controller_fix_etc' into qa

This commit is contained in:
Barbara Miller 2020-09-30 11:00:59 -07:00
commit c21d77335f

View File

@ -166,8 +166,9 @@ class WarcproxController(object):
with processor.inq.mutex: with processor.inq.mutex:
l = list(processor.inq.queue) l = list(processor.inq.queue)
for recorded_url in l: for recorded_url in l:
if not earliest or (earliest and (recorded_url.timestamp < earliest)): if recorded_url.timestamp:
earliest = recorded_url.timestamp if not earliest or (recorded_url.timestamp < earliest):
earliest = recorded_url.timestamp
return earliest return earliest
def postfetch_status(self): def postfetch_status(self):