Explorar o código

Reinstate background tasks

Daoud Clarke %!s(int64=2) %!d(string=hai) anos
pai
achega
a86e172bf3
Modificáronse 1 ficheiros con 1 adicións e 2 borrados
  1. 1 2
      mwmbl/background.py

+ 1 - 2
mwmbl/background.py

@@ -24,7 +24,7 @@ def run(data_path: str, url_queue: Queue):
         url_db.create_tables()
 
     initialize_url_queue(url_queue)
-    # historical.run()
+    historical.run()
     index_path = Path(data_path) / INDEX_NAME
     batch_cache = BatchCache(Path(data_path) / BATCH_DIR_NAME)
 
@@ -33,7 +33,6 @@ def run(data_path: str, url_queue: Queue):
             update_url_queue(url_queue)
         except Exception:
             logger.exception("Error updating URL queue")
-        return
         try:
             batch_cache.retrieve_batches(num_batches=10000)
         except Exception: