mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-10-30 03:56:23 -05:00 
			
		
		
		
	Catch exception during trash-move
This commit is contained in:
		| @@ -247,7 +247,14 @@ def cleanup_document_deletion(sender, instance, using, **kwargs): | |||||||
|  |  | ||||||
|             logger.debug( |             logger.debug( | ||||||
|                 f"Moving {instance.source_path} to trash at {new_file_path}") |                 f"Moving {instance.source_path} to trash at {new_file_path}") | ||||||
|  |             try: | ||||||
|                 os.rename(instance.source_path, new_file_path) |                 os.rename(instance.source_path, new_file_path) | ||||||
|  |             except OSError as e: | ||||||
|  |                 logger.error( | ||||||
|  |                     f"Failed to move {instance.source_path} to trash at " | ||||||
|  |                     f"{new_file_path}: {e}. Skipping cleanup!" | ||||||
|  |                 ) | ||||||
|  |                 return | ||||||
|  |  | ||||||
|         for filename in (instance.source_path, |         for filename in (instance.source_path, | ||||||
|                          instance.archive_path, |                          instance.archive_path, | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Felix Eckhofer
					Felix Eckhofer