-
Notifications
You must be signed in to change notification settings - Fork 96
Compatibility with Vertx 5 required #625
Copy link
Copy link
Open
Labels
Description
Hi, I'm using Vertx for my main service, and I'm using my own Vertx instance for the ArangoDb client:
client new ArangoDB.Builder()
...
.protocolConfig(HttpProtocolConfig.builder().vertx(vertx).build())
.build()
.async();
However, I cannot upgrade to Vertx 5+ (5.0.8 as we speak) with the Java client (7.25.0) without having the following issue:
java.util.concurrent.CompletionException: com.arangodb.ArangoDBException: 'io.vertx.ext.web.client.WebClientOptions io.vertx.ext.web.client.WebClientOptions.setMaxPoolSize(int)'
Reactions are currently unavailable