Sets the http timeouts equal to the task timeout, so it's either done or really done

This commit is contained in:
Trenton Holmes 2023-08-23 17:37:23 -07:00 committed by Trenton H
parent 8f2715e437
commit fe1f88ce5d
2 changed files with 13 additions and 4 deletions

View File

@ -215,7 +215,11 @@ class MailDocumentParser(DocumentParser):
file_multi_part[2],
)
response = httpx.post(url_merge, files=pdf_collection, timeout=30.0)
response = httpx.post(
url_merge,
files=pdf_collection,
timeout=settings.CELERY_TASK_TIME_LIMIT,
)
response.raise_for_status() # ensure we notice bad responses
archive_path.write_bytes(response.content)
@ -330,7 +334,7 @@ class MailDocumentParser(DocumentParser):
files=files,
headers=headers,
data=data,
timeout=30.0,
timeout=settings.CELERY_TASK_TIME_LIMIT,
)
response.raise_for_status() # ensure we notice bad responses
except Exception as err:
@ -409,7 +413,12 @@ class MailDocumentParser(DocumentParser):
file_multi_part[2],
)
response = httpx.post(url, files=files, data=data, timeout=30.0)
response = httpx.post(
url,
files=files,
data=data,
timeout=settings.CELERY_TASK_TIME_LIMIT,
)
response.raise_for_status() # ensure we notice bad responses
except Exception as err:
raise ParseError(f"Error while converting document to PDF: {err}") from err

View File

@ -100,7 +100,7 @@ class TikaDocumentParser(DocumentParser):
files=files,
headers=headers,
data=data,
timeout=30.0,
timeout=settings.CELERY_TASK_TIME_LIMIT,
)
response.raise_for_status() # ensure we notice bad responses
except Exception as err: