Closed
Description
My project is based on a Framework (Quarkus) that uses Vert.x.
When I use the ArangoDB Java Driver to connect to a server I see:
WARN [io.ver.cor.imp.VertxImpl] (executor-thread-1) You're already on a Vert.x context, are you sure you want to create a new Vertx instance?
It happens because HttpConnection
, creates its own Vertx
:
In my case, there's already an existing Vertx
instance managed by Quarkus. So it'd be useful if there were some way to reuse it in the ArangoDB Java Driver.