don't run post-consume script inside transaction #259

This commit is contained in:
jonaswinkler 2021-01-04 00:03:31 +01:00
parent 610fa075f6
commit e07128a145

View File

@ -252,8 +252,6 @@ class Consumer(LoggingMixin):
self.log("debug", "Deleting file {}".format(self.path))
os.unlink(self.path)
self.run_post_consume_script(document)
except Exception as e:
self.log(
"error",
@ -264,6 +262,8 @@ class Consumer(LoggingMixin):
finally:
document_parser.cleanup()
self.run_post_consume_script(document)
self.log(
"info",
"Document {} consumption finished".format(document)