Explorar el Código

Restore the proper number of search workers

jherve hace 1 año
padre
commit
6bec5fc521
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/de_quoi_parle_le_monde/snapshots.py

+ 1 - 1
src/de_quoi_parle_le_monde/snapshots.py

@@ -213,7 +213,7 @@ async def main():
 
     async with InternetArchiveClient.create() as ia:
         workers = {
-            SearchWorker(queue, storage, ia): 1,
+            SearchWorker(queue, storage, ia): 3,
             FetchWorker(queue, ia): 3,
             ParseWorker(queue): 3,
             StoreWorker(queue, storage): 1,