From 09651e001197e00d67eb97a84be3c48665ebd574 Mon Sep 17 00:00:00 2001 From: Jonas Winkler Date: Thu, 12 Nov 2020 10:41:47 +0100 Subject: [PATCH] on_modified not needed for the consumer. --- src/documents/management/commands/document_consumer.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/documents/management/commands/document_consumer.py b/src/documents/management/commands/document_consumer.py index a90fd53ed..ea6e033ba 100644 --- a/src/documents/management/commands/document_consumer.py +++ b/src/documents/management/commands/document_consumer.py @@ -25,14 +25,12 @@ class Handler(FileSystemEventHandler): try: self.consumer.try_consume_file(file) except Exception as e: + # Catch all so that the consumer won't crash. logging.getLogger(__name__).error("Error while consuming document: {}".format(e)) def on_created(self, event): self._consume(event.src_path) - def on_modified(self, event): - self._consume(event.src_path) - def on_moved(self, event): self._consume(event.src_path)