Skip to content

Commit c2d955b

Browse files
committed
[java] Switching default client implementation from okhttp to netty
1 parent 3b117fa commit c2d955b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/client/src/org/openqa/selenium/remote/http/HttpClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ interface Factory {
3636
* {@link HttpClient} should be used.
3737
*/
3838
static Factory createDefault() {
39-
String defaultFactory = System.getProperty("webdriver.http.factory", "okhttp");
39+
String defaultFactory = System.getProperty("webdriver.http.factory", "netty");
4040
switch (defaultFactory) {
4141
case "netty":
4242
try {

0 commit comments

Comments
 (0)