Results 3 comments of Joshua Masiko

I have cobbled together a draft which adds multi-user functionality You have to upload the file via the web form in order for it to work. https://github.com/the-paperless-project/paperless/pull/548#issue-285474090

The issue seems to be specific to SQLite https://docs.djangoproject.com/en/2.2/ref/databases/#database-is-locked-errors There is only one database write in the try_consume_file function which happens at the end of the consumption process https://github.com/the-paperless-project/paperless/blob/8e6d7cba1329c959659cd133522e30cda1ae3943/src/documents/consumer.py#L154 Is...

Isn't the @transaction.atomic only necessary if you are writing to the database in the signal handlers so that the is a ***set*** of DB operations that may be rolled back?...