Hi the this code :
if (this.isClosing) {
returnServerResponse.status(HttpStatus.SERVICE_UNAVAILABLE)
.body("Server is shutting down");
}
if (request.param("sessionId").isEmpty()) {
returnServerResponse.badRequest()
.body(newMcpError("Session ID missing in message endpoint"));
}
StringsessionId = request.param("sessionId").get();
McpServerSessionsession = sessions.get(sessionId);
if (session == null) {
returnServerResponse.status(HttpStatus.NOT_FOUND)
.body(newMcpError("Session not found: " + sessionId));
}when mcp server is cluster model. McpServerSession session = sessions.get(sessionId); is null
Hi the this code :
when mcp server is cluster model. McpServerSession session = sessions.get(sessionId); is null