Paulo Lopes

Results 348 comments of Paulo Lopes

EventBusBridge timeout is not configurable from the javascript (client) side. Currently we only allow headers. Adding support for it could be a improvement.

This improvement would require both adding support on the js side plus the java side: https://github.com/vert-x3/vertx-web/blob/master/vertx-web/src/main/java/io/vertx/ext/web/handler/sockjs/impl/EventBusBridgeImpl.java#L480..L491

That is not an optimal solution as it can introduce side effects. A promise timeout does not cancel the message it just breaks the flow from the server to your...

@runtarinn you're right. There were already context related issues initially, I believe the mentioned commit, was blindly, forcing a "context" (not always the right one) on all asynchronous operations. I...

This is a codegen issue, types are getting mixed as we have overload's for that field which was named buffer and also has a buffer input argument.

Just for better understand the problem. HRX generates SQL from java code/classes, and the generated code is aware of the target database (for type support, sequences, etc). So what is...

Just a note: perhaps it could be interesting to have a feature where authentication can be plugged, and for AWS a plugin could use the following to automate the login...

With Vert.x 3.5 there is a experimental service proxy interceptors feature and the only implemented one is a JWT interceptor: https://github.com/vert-x3/vertx-service-proxy/blob/master/src/main/java/io/vertx/serviceproxy/ServiceBinder.java https://github.com/vert-x3/vertx-service-proxy/blob/master/src/main/java/io/vertx/serviceproxy/ServiceJWTInterceptor.java So you can then protect your service if...

@MasterKale I've recreated the PR as #69 because this PR was done using the GH web interface and I had to rebase the branch.