fix: restore missing closing brace in DynamicMcpController
Some checks failed
Deploy to OCIWP / deploy (push) Failing after 15m36s

This commit is contained in:
kimhyungsik
2026-07-23 13:08:16 +09:00
parent 408a3f6b28
commit 1e54370fb8

View File

@@ -83,6 +83,8 @@ public class DynamicMcpController {
return ResponseEntity.ok()
.header("Mcp-Session-Id", activeSessionId)
.body(emitter);
}
@org.springframework.web.bind.annotation.DeleteMapping("/mcp/sse/{category}")
public ResponseEntity<Void> handleDeleteSse(@PathVariable("category") String category) {
return ResponseEntity.ok().build();