mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
locking for the document archiver
This commit is contained in:
parent
6c972bd08a
commit
72616def4f
@ -11,6 +11,7 @@ from django import db
|
|||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.core.management.base import BaseCommand
|
from django.core.management.base import BaseCommand
|
||||||
from django.db import transaction
|
from django.db import transaction
|
||||||
|
from filelock import FileLock
|
||||||
from whoosh.writing import AsyncWriter
|
from whoosh.writing import AsyncWriter
|
||||||
|
|
||||||
from documents.models import Document
|
from documents.models import Document
|
||||||
@ -47,8 +48,10 @@ def handle_document(document_id):
|
|||||||
archive_checksum=checksum,
|
archive_checksum=checksum,
|
||||||
content=parser.get_text()
|
content=parser.get_text()
|
||||||
)
|
)
|
||||||
create_source_path_directory(document.archive_path)
|
with FileLock(settings.MEDIA_LOCK):
|
||||||
shutil.move(parser.get_archive_path(), document.archive_path)
|
create_source_path_directory(document.archive_path)
|
||||||
|
shutil.move(parser.get_archive_path(),
|
||||||
|
document.archive_path)
|
||||||
|
|
||||||
with AsyncWriter(index.open_index()) as writer:
|
with AsyncWriter(index.open_index()) as writer:
|
||||||
index.update_document(writer, document)
|
index.update_document(writer, document)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user