Do file renaming first, since this is the important step, and indexing takes a while.

This commit is contained in:
jonaswinkler 2020-12-30 17:18:27 +01:00
parent beed820602
commit 1df922ef16

View File

@ -94,7 +94,10 @@ def bulk_update_documents(document_ids):
documents = Document.objects.filter(id__in=document_ids)
ix = index.open_index()
for doc in documents:
post_save.send(Document, instance=doc, created=False)
with AsyncWriter(ix) as writer:
for doc in documents:
index.update_document(writer, doc)
post_save.send(Document, instance=doc, created=False)