Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: kotlin ingress was adding "Method" (#578)
Kotlin `extractIngress` was using the full path of the enum `Method.GET` instead of just the value `GET` This would put an ingress route in the db that wouldn't be found with our query. Since it couldn't be found, all Kotlin ingresses would return `404 not found` This is a quick change by pulling just the part of the string we want, but we may way a more robust solution the future.
- Loading branch information