When the client disconnects right upon sending an SSE request
Then the request might get handled on two threads simultaneously.
If timeout is set for the SSE emitter (trial.sse.SseResource:30) then the second handler cannot be initialized properly that ends up with a memory leak in Spring.
If no timeout is set (default constructor in trial.sse.SseResource:30) then both handlers are executed a few times but no resource leak found.