Hi! I have a Ktor-server running some REST-services. I had some problems that my endpoint returned 404 to the client even though I could see that the server was handling the request. The reason being that I was missing a call.respond (this was a void method), and this resulted in a 404 Not Found. Is this by design?