We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 858b98d commit 42379f6Copy full SHA for 42379f6
1 file changed
java/src/org/openqa/selenium/remote/http/netty/NettyClient.java
@@ -87,7 +87,8 @@ private static AsyncHttpClient createHttpClient(ClientConfig config) {
87
.setReadTimeout(toClampedInt(config.readTimeout().toMillis()))
88
.setFollowRedirect(true)
89
.setUseProxyProperties(true)
90
- .setUseProxySelector(true);
+ .setUseProxySelector(true)
91
+ .setMaxRequestRetry(0);
92
93
return Dsl.asyncHttpClient(builder);
94
}
0 commit comments