mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
DEBUG - force flush 2nd try
This commit is contained in:
parent
063bfc245c
commit
d9e06958dc
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
- name: generate random name and content
|
- name: generate random name and content
|
||||||
set_fact:
|
set_fact:
|
||||||
content: "{{ lookup('password', '/dev/null length=64 chars=ascii_letters') }}\n"
|
content: "{{ lookup('password', '/dev/null length=64 chars=ascii_letters') }}"
|
||||||
filename: "{{ lookup('password', '/dev/null length=8 chars=ascii_letters') }}"
|
filename: "{{ lookup('password', '/dev/null length=8 chars=ascii_letters') }}"
|
||||||
|
|
||||||
- name: check if document posting works
|
- name: check if document posting works
|
||||||
|
@ -381,9 +381,9 @@ class PostDocumentView(APIView):
|
|||||||
|
|
||||||
with tempfile.NamedTemporaryFile(prefix="paperless-upload-",
|
with tempfile.NamedTemporaryFile(prefix="paperless-upload-",
|
||||||
dir=settings.SCRATCH_DIR,
|
dir=settings.SCRATCH_DIR,
|
||||||
|
buffering=0,
|
||||||
delete=False) as f:
|
delete=False) as f:
|
||||||
f.write(doc_data)
|
f.write(doc_data)
|
||||||
f.flush()
|
|
||||||
os.utime(f.name, times=(t, t))
|
os.utime(f.name, times=(t, t))
|
||||||
|
|
||||||
async_task("documents.tasks.consume_file",
|
async_task("documents.tasks.consume_file",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user