mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Lock the media directory and refresh the document to ensure we have where it actually lives before attaching (#8737)
This commit is contained in:
parent
c45bbcaea2
commit
49a96ccee0
@ -943,6 +943,9 @@ def run_workflows(
|
|||||||
to=action.email.to.split(","),
|
to=action.email.to.split(","),
|
||||||
)
|
)
|
||||||
if action.email.include_document:
|
if action.email.include_document:
|
||||||
|
# Something could be renaming the file concurrently so it can't be attached
|
||||||
|
with FileLock(settings.MEDIA_LOCK):
|
||||||
|
document.refresh_from_db()
|
||||||
email.attach_file(document.source_path)
|
email.attach_file(document.source_path)
|
||||||
n_messages = email.send()
|
n_messages = email.send()
|
||||||
logger.debug(
|
logger.debug(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user