mirror of
https://github.com/aljazceru/mcp-python-sdk.git
synced 2025-12-19 23:04:25 +01:00
Close unclosed resources in the whole project (#267)
* Close resources * Close all resources * Update pyproject.toml * Close all resources * Close all resources * try now... * try to ignore this * try again * try adding one more.. * try now * try now * revert ci changes
This commit is contained in:
committed by
GitHub
parent
1691b905e2
commit
94d326dbf1
@@ -43,7 +43,13 @@ async def test_request_id_match() -> None:
|
||||
)
|
||||
|
||||
# Start server task
|
||||
async with anyio.create_task_group() as tg:
|
||||
async with (
|
||||
anyio.create_task_group() as tg,
|
||||
client_writer,
|
||||
client_reader,
|
||||
server_writer,
|
||||
server_reader,
|
||||
):
|
||||
tg.start_soon(run_server)
|
||||
|
||||
# Send initialize request
|
||||
|
||||
Reference in New Issue
Block a user