Hello folks, I am trying to understand an issue th...
# ktor
k
Hello folks, I am trying to understand an issue that i am currently facing. I have setup some routes using ktor and most of them seem to be working fine. There is 1 api though that keeps working on and off. I have tried running the trace and it comes back saying
FAILURE "Selector didn't match"
. It does match some times and doesn't at some other times which is very strange. I can't figure out a reason. Is there a way i can debug? The api is nested - GET api
Copy code
/api/office/{officeid}/allinprogram
with the trace - TRACE Application - Trace for [api, office, officeid, allinprogram]. i have tried changing the
allinprogram
to other names just to ensure there is no path confusion but same results. Another weird thing related to this - The api works 100% if i fire from postman but fails randomly if i call it from the KMP app i am using it in. thanks in advance for the help.