You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public class Main {
public static void main(String[] args) {
var vertx = Vertx.vertx(new VertxOptions()
.setPreferNativeTransport(true)
);
boolean usingNative = vertx.isNativeTransportEnabled();
System.out.println("Running with native: " + usingNative);
}
}
During my investigations I found out my app caught: could not load a native library: netty_transport_native_kqueue_x86_64 exception in the io.netty.channel.kqueue.KQueue class.
Do I need something else to add in dependencies or it's a bug?
The text was updated successfully, but these errors were encountered:
I use vert.x 4.0.0 java 14 and os x 11.1.
That's a reproducer:
Also I have a gradle build with dependencies:
During my investigations I found out my app caught:
could not load a native library: netty_transport_native_kqueue_x86_64
exception in the io.netty.channel.kqueue.KQueue class.Do I need something else to add in dependencies or it's a bug?
The text was updated successfully, but these errors were encountered: