We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d108b7 commit ca468c5Copy full SHA for ca468c5
core-examples/src/main/java/io/vertx/example/core/net/echossl/Client.java
@@ -18,7 +18,10 @@ public static void main(String[] args) {
18
@Override
19
public Future<?> start() throws Exception {
20
21
- NetClientOptions options = new NetClientOptions().setSsl(true).setTrustAll(true);
+ NetClientOptions options = new NetClientOptions()
22
+ .setSsl(true)
23
+ .setTrustAll(true)
24
+ .setHostnameVerificationAlgorithm("");
25
26
vertx
27
.createNetClient(options).connect(1234, "localhost")
0 commit comments