mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-10-28 03:46:06 -05:00 
			
		
		
		
	Wrap document consumption in a transaction #262
This commit is contained in:
		| @@ -1,3 +1,4 @@ | ||||
| from django.db import transaction | ||||
| import datetime | ||||
| import hashlib | ||||
| import logging | ||||
| @@ -111,8 +112,11 @@ class Consumer: | ||||
|                 if not self.try_consume_file(file): | ||||
|                     self._ignore.append((file, mtime)) | ||||
|  | ||||
|     @transaction.atomic | ||||
|     def try_consume_file(self, file): | ||||
|         "Return True if file was consumed" | ||||
|         """ | ||||
|         Return True if file was consumed | ||||
|         """ | ||||
|  | ||||
|         if not re.match(FileInfo.REGEXES["title"], file): | ||||
|             return False | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Daniel Quinn
					Daniel Quinn