From 59f35893d3e7a980348c641e460a7f3d6b1384b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=BD=E6=9C=88?= <102944161+lvluoyue@users.noreply.github.com> Date: Fri, 21 Nov 2025 17:23:50 +0800 Subject: [PATCH] fix: delete http code --- src/Server/Transport/StreamableHttpTransport.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Server/Transport/StreamableHttpTransport.php b/src/Server/Transport/StreamableHttpTransport.php index dcac42dd..481a2e25 100644 --- a/src/Server/Transport/StreamableHttpTransport.php +++ b/src/Server/Transport/StreamableHttpTransport.php @@ -115,7 +115,7 @@ protected function handleDeleteRequest(): ResponseInterface $this->handleSessionEnd($this->sessionId); - return $this->withCorsHeaders($this->responseFactory->createResponse(204)); + return $this->withCorsHeaders($this->responseFactory->createResponse(200)); } protected function createJsonResponse(): ResponseInterface