Andy Damevin
Andy Damevin
I used a workaround for this one. The drawback of this approach is that it restarts the proxy between each tests (which is slow). I would definitively like a solution...
I manage to do it with your last proposition: ```Java public class LauncherPerTestHoverflyRule implements TestRule { private final HoverflyRule hoverflyRule; public LauncherPerTestHoverflyRule(HoverflyRule hoverflyRule) { this.hoverflyRule = hoverflyRule; } @Override public...
@tommysitu I will focus on the multiple requests issue, and then if I still got time propose a PR for this one too ;)
@vietj if you also think it's relevant could you assign it to me?
@pmlopes maybe?
@pmlopes I was thinking about dealing with it there (at least we know the file exists already): https://github.com/vert-x3/vertx-web/blob/45a280209f70daf7f760de04ef4becadb52630f4/vertx-web/src/main/java/io/vertx/ext/web/handler/impl/StaticHandlerImpl.java#L432 Could you confirm: - Regarding CORS, do you mean NOOP because CORS...
You are right, currently if the method is not GET, HEAD it just passes it to the next, while it should check if the file exist to answer 405 in...
@pmlopes I was wondering if the `Access-Control-Allow-Method` should not depend on if the file exists or not? - exists then `Access-Control-Allow-Method` should be the intersection between CorsHandler.allowedMethods & `GET, HEAD,...
I will try something next week, sorry I've got sidetracked..