mirror of
https://github.com/bellingcat/auto-archiver.git
synced 2026-06-13 05:38:29 +03:00
fixing bug in whisper wnericher
This commit is contained in:
@@ -87,7 +87,7 @@ class WhisperEnricher(Enricher):
|
|||||||
while not all_completed and (time.time() - start_time) <= self.timeout:
|
while not all_completed and (time.time() - start_time) <= self.timeout:
|
||||||
all_completed = True
|
all_completed = True
|
||||||
for job_id in job_results:
|
for job_id in job_results:
|
||||||
if job_results[job_id]: continue
|
if job_results[job_id] != False: continue
|
||||||
all_completed = False # at least one not ready
|
all_completed = False # at least one not ready
|
||||||
try: job_results[job_id] = self.check_job(job_id)
|
try: job_results[job_id] = self.check_job(job_id)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
|||||||
Reference in New Issue
Block a user