[IMP] attachment_synchronize : Automatic retry when attachment fails because of timeout

pull/3036/head
Florian da Costa 2024-09-26 17:35:08 +02:00
parent 99502f338c
commit 8acb2391a4
1 changed files with 20 additions and 9 deletions

View File

@ -5,6 +5,8 @@ import base64
from odoo import api, fields, models
from odoo.addons.queue_job.exception import RetryableJobError
class AttachmentQueue(models.Model):
_inherit = "attachment.queue"
@ -30,17 +32,26 @@ class AttachmentQueue(models.Model):
def _run(self):
res = super()._run()
if self.file_type == "export":
fs = self.fs_storage_id.fs
folder_path = self.task_id.filepath
full_path = (
folder_path and fs.sep.join([folder_path, self.name]) or self.name
)
# create missing folders if necessary :
if folder_path and not fs.exists(folder_path):
fs.makedirs(folder_path)
self._write_file_to_remote(fs, full_path)
try:
fs = self.fs_storage_id.fs
folder_path = self.task_id.filepath
full_path = (
folder_path and fs.sep.join([folder_path, self.name]) or self.name
)
# create missing folders if necessary :
if folder_path and not fs.exists(folder_path):
fs.makedirs(folder_path)
self._write_file_to_remote(fs, full_path)
except TimeoutError as err:
raise RetryableJobError(
str(err),
seconds=self._timeout_retry_seconds(),
) from err
return res
def _timeout_retry_seconds(self):
return 60 * 60 * 4
def _get_failure_emails(self):
res = super()._get_failure_emails()
if self.task_id.failure_emails: