Skip to content

Commit

Permalink
Modified test to use default DnsAddresslookup.
Browse files Browse the repository at this point in the history
Signed-off-by: Santiago Pericasgeertsen <santiago.pericasgeertsen@oracle.com>
  • Loading branch information
spericas committed Jan 23, 2024
1 parent 67eb4c6 commit ec228b9
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2023 Oracle and/or its affiliates.
* Copyright (c) 2023, 2024 Oracle and/or its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -46,6 +46,7 @@
import io.helidon.webclient.api.ClientUri;
import io.helidon.webclient.api.ConnectionKey;
import io.helidon.webclient.api.DefaultDnsResolver;
import io.helidon.webclient.api.DnsAddressLookup;
import io.helidon.webclient.api.Proxy;
import io.helidon.webclient.api.TcpClientConnection;
import io.helidon.webclient.api.WebClient;
Expand Down Expand Up @@ -95,7 +96,7 @@ void emptyDataFramesAttack() throws InterruptedException, ExecutionException, Ti
Duration.ZERO,
Tls.builder().enabled(false).build(),
DefaultDnsResolver.create(),
null,
DnsAddressLookup.defaultLookup(),
Proxy.noProxy());

TcpClientConnection conn = TcpClientConnection.create(WebClient.builder()
Expand Down

0 comments on commit ec228b9

Please sign in to comment.