mirror of
https://github.com/internetarchive/warcprox.git
synced 2025-01-18 13:22:09 +01:00
Merge branch 'controller_fix_etc' into qa
This commit is contained in:
commit
8c855ec4db
@ -166,7 +166,7 @@ class WarcproxController(object):
|
||||
with processor.inq.mutex:
|
||||
l = list(processor.inq.queue)
|
||||
for recorded_url in l:
|
||||
if earliest is None or recorded_url.timestamp < earliest:
|
||||
if not earliest or (earliest and (recorded_url.timestamp < earliest)):
|
||||
earliest = recorded_url.timestamp
|
||||
return earliest
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user