File tree Expand file tree Collapse file tree 5 files changed +0
-7
lines changed
test/jdk/java/net/httpclient Expand file tree Collapse file tree 5 files changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -166,7 +166,6 @@ private HttpClient makeNewClient() {
166166 .proxy (HttpClient .Builder .NO_PROXY )
167167 .executor (executor )
168168 .sslContext (sslContext )
169- .connectTimeout (Duration .ofSeconds (10 ))
170169 .build ();
171170 return TRACKER .track (client );
172171 }
Original file line number Diff line number Diff line change @@ -216,7 +216,6 @@ private HttpClient makeNewClient() {
216216 .proxy (HttpClient .Builder .NO_PROXY )
217217 .executor (executor )
218218 .sslContext (sslContext )
219- .connectTimeout (Duration .ofSeconds (10 ))
220219 .build ();
221220 return TRACKER .track (client );
222221 }
Original file line number Diff line number Diff line change @@ -164,7 +164,6 @@ private HttpClient makeNewClient() {
164164 .proxy (HttpClient .Builder .NO_PROXY )
165165 .executor (executor )
166166 .sslContext (sslContext )
167- .connectTimeout (Duration .ofSeconds (10 ))
168167 .build ();
169168 return client ;
170169 }
Original file line number Diff line number Diff line change @@ -103,8 +103,6 @@ public void testLargeHeaderSize() throws Exception {
103103 final HttpClient client = newClientBuilderForH3 ()
104104 .proxy (HttpClient .Builder .NO_PROXY )
105105 .version (Version .HTTP_3 )
106- // the server drops 1 packet out of two!
107- .connectTimeout (Duration .ofSeconds (Utils .adjustTimeout (10 )))
108106 .sslContext (sslContext ).build ();
109107 final URI reqURI = new URI (requestURIBase + "/hello" );
110108 final HttpRequest .Builder reqBuilder = HttpRequest .newBuilder (reqURI )
Original file line number Diff line number Diff line change @@ -155,8 +155,6 @@ public void multipleTableInsertions() throws Exception {
155155 final HttpClient client = newClientBuilderForH3 ()
156156 .proxy (HttpClient .Builder .NO_PROXY )
157157 .version (Version .HTTP_3 )
158- // the server drops 1 packet out of two!
159- .connectTimeout (Duration .ofSeconds (Utils .adjustTimeout (10 )))
160158 .sslContext (sslContext ).build ();
161159 final URI reqURI = new URI (requestURIBase + "/insertions" );
162160 final HttpRequest .Builder reqBuilder = HttpRequest .newBuilder (reqURI )
You can’t perform that action at this time.
0 commit comments