Hi. I'm debugging an issue where, on a `ktor` rest...
# server
a
Hi. I'm debugging an issue where, on a
ktor
rest API server,
GET
/api/v1/myroute/CompTIE
matches the route I've created, but
GET
/api/v1/myroute/CompTIA
does not. The route is defined as
Copy code
fun Route.myRoutes() {
  route("/myroute") {
    get("/{name}") {
      ...
    }
  }
}
Why am I getting this error? Thread in Slack Conversation