Paulo Lopes

Results 282 comments of Paulo Lopes

ok, @gsmet would an interface like: ```java @VertxGen public interface MimeType { String APPLICATION_JSON = "application/json"; ... } ``` Be enough? Using this approach, users can still use the string...

@gsmet, let's start small, I'll just dump the same list we have in core but as constants for now and users are welcome to do later pull requests for missing...

I see that that class doesn't have annotations. We need to go over the code and identify all missing annotations.

Hi @murphye! How did you manage to create the project, I just did this in a clean VM with stock OpenJDK11 ``` ~ $ java --version openjdk 11.0.11 2021-04-20 OpenJDK...

I do see you have Unix like paths in your output. What are you using to install and launch the application? I assume it's not `cmd`? I also need to...

Session stores are not expected to be transactional. In 4 we have added a new api method: `flush` that can be called by the user and will await for the...

There's a `scope` problem with the example code: ```java ... router.get("/does-not-work").handler(routingContext -> { eventBus.request("image", null, asyncResponse -> { // This code is defined inside a lambda, which means the execution...

`ClassNotFoundException` is usually a sign that the project is mixing the wrong versions of dependencies.

@chefhoobajoob `envoy` rejected the issue, claiming that there are now `standard` headers for this (the ones vertx-web, also follows). While `X-Forward-{For|Proto|Port}` do seen quite common, `Prefix` is not common and...

References: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Forwarded https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/x-forwarded-headers.html