Skip to content

Commit

Permalink
[java] Switching default client implementation from okhttp to netty
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Jan 9, 2020
1 parent 3b117fa commit c2d955b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ interface Factory {
* {@link HttpClient} should be used.
*/
static Factory createDefault() {
String defaultFactory = System.getProperty("webdriver.http.factory", "okhttp");
String defaultFactory = System.getProperty("webdriver.http.factory", "netty");
switch (defaultFactory) {
case "netty":
try {
Expand Down

0 comments on commit c2d955b

Please sign in to comment.