diff --git a/src/blaxel/core/sandbox/default/process.py b/src/blaxel/core/sandbox/default/process.py index 0f440f7..cae39b9 100644 --- a/src/blaxel/core/sandbox/default/process.py +++ b/src/blaxel/core/sandbox/default/process.py @@ -155,7 +155,7 @@ async def start_streaming(): headers = {**settings.headers, **self.sandbox_config.headers} try: - async with httpx.AsyncClient() as client_instance: + async with httpx.AsyncClient(timeout=None) as client_instance: async with client_instance.stream("GET", url, headers=headers) as response: if response.status_code != 200: raise Exception(f"Failed to stream logs: {await response.aread()}")