diff --git a/pipeline/container/routes/v4/files.py b/pipeline/container/routes/v4/files.py index 9c29cbca..05ad45b2 100644 --- a/pipeline/container/routes/v4/files.py +++ b/pipeline/container/routes/v4/files.py @@ -61,7 +61,7 @@ async def upload_local_files_to_storage( remote storage, using presigned URL. Files are uploaded in parallel for efficiency. """ - async with httpx.AsyncClient() as client: + async with httpx.AsyncClient(verify=False) as client: await asyncio.gather( *[_upload_file_using_presigned_url(client, file) for file in payload.files] ) diff --git a/pipeline/container/services/run.py b/pipeline/container/services/run.py index 40e6d4c7..eed6e6e1 100644 --- a/pipeline/container/services/run.py +++ b/pipeline/container/services/run.py @@ -57,7 +57,7 @@ async def _send_async_result( callback_url: str, response_schema: run_schemas.ContainerRunResult ): logger.info("Sending async result...") - async with httpx.AsyncClient() as client: + async with httpx.AsyncClient(verify=False) as client: try: response = await client.post( callback_url, json=response_schema.dict(), timeout=10 diff --git a/pyproject.toml b/pyproject.toml index f9ff5aa0..16536e7d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pipeline-ai" -version = "2.6.2" +version = "2.6.3" description = "Pipelines for machine learning workloads." authors = [ "Paul Hetherington ",