Chris Galardi

Results 12 comments of Chris Galardi

I am also running into this. It's because the OpenAPI3 router builder adds `ValidationHandlerImpl` which is a `USER` handler. I think vertx-web needs to implement some sort of runtime sorting...

Also, for context, im in a similar situation: My API needs to have some endpoints that do not have authentication AND it needs extra authorization handlers on another subset.

@ikstewa fyi you can turn this check off by doing ```java System.setProperty("io.vertx.web.router.setup.lenient", "true"); ``` before building the router.

do you think this might be related to what im seeing? https://github.com/vert-x3/vertx-web/issues/2220 . there doesn't seem to be a lot of throughput on bugs in this repo.

ooo thank you i will try this when i get some time

@devinsba > could you tell us what vertx modules you are using? IE: for vertx 3 we support web, rx, redis, and mysql. super important for us as well. we're...

Sorry, I edited my issue to be specific that what i want is, in the case that it is present, an empty list for `security` to persist through serialization because...

Thank you for your thorough analysis! I understand what’s wrong and perhaps at some point I’ll be able to take a look for myself. In the mean time I’ve gotten...

basically, yes, you can. look up refs and then do something like this ```java package oas3; import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.dataformat.yaml.YAMLMapper; import com.reprezen.jsonoverlay.Overlay; import com.reprezen.jsonoverlay.SerializationOptions; import com.reprezen.kaizen.oasparser.OpenApi3Parser; import com.reprezen.kaizen.oasparser.model3.OpenApi3; import com.reprezen.kaizen.oasparser.val.ValidationResults;...