Merge pull request #135 from taylorwilsdon/issues/73
Some checks failed
Release / release (push) Has been cancelled
Create and publish Docker images with specific build args / build-main-image (linux/amd64) (push) Has been cancelled
Create and publish Docker images with specific build args / build-main-image (linux/arm64) (push) Has been cancelled
Create and publish Docker images with specific build args / merge-main-images (push) Has been cancelled

add sse_read_timeout=None back
This commit is contained in:
Tim Jaeryang Baek 2025-05-15 13:29:33 +04:00 committed by GitHub
commit 27af7a6f22
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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" },