I have a simple SSE server, which gives me 500s fr...
# http4k
s
I have a simple SSE server, which gives me 500s from undertow when I try to call the endpoint
Copy code
fun app() = sse(
    "/test" bind { sse: Sse ->
        println("Hello world")
    }
)
fun main(): Unit = app().asServer(Undertow(8080)).start().block()