check record_url.timestamp

This commit is contained in:
Barbara Miller 2020-09-30 11:00:35 -07:00
parent e29d377dfd
commit 42676cfb35

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):