From bd85ca9f88219666598d38b63646415608da3c16 Mon Sep 17 00:00:00 2001 From: jade Date: Mon, 20 Jul 2026 09:53:44 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20Deep=20Agent=20Builder=20JSON=20?= =?UTF-8?q?=ED=8C=8C=EC=8B=B1=20=EC=97=90=EB=9F=AC=20=EB=B0=A9=EC=A7=80?= =?UTF-8?q?=EB=A5=BC=20=EC=9C=84=ED=95=B4=20=EC=BB=A4=EC=8A=A4=ED=85=80=20?= =?UTF-8?q?SSE=20=EC=97=94=EB=93=9C=ED=8F=AC=EC=9D=B8=ED=8A=B8=20=EC=9D=B4?= =?UTF-8?q?=EB=B2=A4=ED=8A=B8=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../gateway/sync/CustomWebMvcSseServerTransportProvider.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/dap-gateway/src/main/java/io/shinhanlife/dap/biz/mcp/gateway/sync/CustomWebMvcSseServerTransportProvider.java b/dap-gateway/src/main/java/io/shinhanlife/dap/biz/mcp/gateway/sync/CustomWebMvcSseServerTransportProvider.java index 700aabc..5846aef 100644 --- a/dap-gateway/src/main/java/io/shinhanlife/dap/biz/mcp/gateway/sync/CustomWebMvcSseServerTransportProvider.java +++ b/dap-gateway/src/main/java/io/shinhanlife/dap/biz/mcp/gateway/sync/CustomWebMvcSseServerTransportProvider.java @@ -137,10 +137,6 @@ public class CustomWebMvcSseServerTransportProvider implements McpServerTranspor new Thread(() -> { try { - // 커스텀 클라이언트는 endpoint 이벤트를 무시할 수 있지만 표준 호환성을 위해 전송 - Thread.sleep(100); - emitter.send(org.springframework.web.servlet.mvc.method.annotation.SseEmitter.event().name("endpoint").data(messageEndpoint + "?sessionId=" + sessionId)); - // Body로 들어온 메시지 즉시 비동기 처리 if (body != null && !body.trim().isEmpty()) { handleMessage(sessionId, body);