Nabil Abdel-Hafeez
Nabil Abdel-Hafeez
@jdegoes I find this behaviour confusing. Everywhere else we give "the new thing" precedence. Should we change it?
closing in favor of #3337
Your described solution should be the right way. However, I am not sure that all Open API validations can be mapped to current schema validations. It might need some extension...
/livestream [**Click here to watch 987Nabil**](https://tv.algora.io/gh/7283535/channel)
I am done with the impl. But another fix for zio-schema is needed https://github.com/zio/zio-schema/pull/698
Please provide code for a reproducer
@godspeedelbow I am not sure we can solve this in zio-http. A `GET` should always take precedence over an `ANY`. That is works as designed. Only if the path does...
ANY is explicitly designed to be a catch all with the lowest precedence. Only your use case would work better if the behavior would be different. /proxy could be a...
I kinda dislike adding complexity for everyone to help out tapir. What is tapir doing internally? I think that might be where a fix is applied easier.
@jdegoes I tried this and came to have an issue with this definition of Route ```scala private final case class Augmented[InEnv, -OutEnv, +Err]( route: Route[InEnv, Err], aspect: Handler[InEnv, Response, Request,...