add sse_read_timeout=None back

This commit is contained in:
Taylor Wilsdon 2025-05-14 17:50:03 -04:00
parent c34e4c55e5
commit ee5c129de6
2 changed files with 2 additions and 2 deletions

View File

@ -112,7 +112,7 @@ async def lifespan(app: FastAPI):
await create_dynamic_endpoints(app, api_dependency=api_dependency)
yield
if server_type == "sse":
async with sse_client(url=args[0]) as (
async with sse_client(url=args[0], sse_read_timeout=None) as (
reader,
writer,
):

View File

@ -313,7 +313,7 @@ cli = [
[[package]]
name = "mcpo"
version = "0.0.13"
version = "0.0.14"
source = { editable = "." }
dependencies = [
{ name = "click" },