From 0fa3c3188d9c324de15ee71243f8b34e456daf50 Mon Sep 17 00:00:00 2001 From: jonaswinkler Date: Tue, 22 Dec 2020 15:53:04 +0100 Subject: [PATCH] update index after import --- src/documents/management/commands/document_importer.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/documents/management/commands/document_importer.py b/src/documents/management/commands/document_importer.py index 344be32be..6df14a82c 100644 --- a/src/documents/management/commands/document_importer.py +++ b/src/documents/management/commands/document_importer.py @@ -73,6 +73,9 @@ class Command(Renderable, BaseCommand): self._import_files_from_manifest() + print("Updating search index...") + call_command('document_index', 'reindex') + @staticmethod def _check_manifest_exists(path): if not os.path.exists(path):