From 335ab662cf32f2ab382037568807c6221c78b707 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Wed, 19 May 2021 15:12:35 -0700 Subject: [PATCH] new: Auto trigger modules in the bg process --- bin/background_indexer.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/background_indexer.py b/bin/background_indexer.py index 92340b2c..4b6fd579 100755 --- a/bin/background_indexer.py +++ b/bin/background_indexer.py @@ -34,6 +34,7 @@ class BackgroundIndexer(AbstractManager): try: self.logger.info(f'Build pickle for {uuid}: {uuid_path.parent.name}') self.lookyloo.get_crawled_tree(uuid) + self.lookyloo.trigger_modules(uuid, auto_trigger=True) self.logger.info(f'Pickle for {uuid} build.') except NoValidHarFile: self.logger.warning(f'Unable to build pickle for {uuid}: {uuid_path.parent.name}')