Hi, any reason ktor would return 404 and never hit...
# server
j
Hi, any reason ktor would return 404 and never hit a registered route using netty and running from intellij? routes and app in thread
🙌 1
server.kt
I don't see my breakpoints in any of the routes being hit but they hit in the server start
b
Can't see any routes other than static
j
What Martynas said, the only thing that is registered is
/
I think. Would expect to see something like this:
Copy code
routing {
    route("/echo") {
        // response here
    }
}
j
@Big Chungus @Jordan Foo Sorry I appear to have pasted the same snippet twice. Here is the other route
routes
i cleaned and restarted my whole machine. things appear to be working now. Sorry for the trouble