Skip to content

Commit

Permalink
[java] Add back keepAlive that was removed by accident
Browse files Browse the repository at this point in the history
  • Loading branch information
AutomatedTester committed Jun 5, 2020
1 parent 74ab4ec commit 8ee7f30
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ public class ReactorClient implements HttpClient {
private ReactorClient(ClientConfig config) {
this.config = config;
httpClient = reactor.netty.http.client.HttpClient.create()
.baseUrl(config.baseUrl().toString());
.baseUrl(config.baseUrl().toString())
.keepAlive(true);
}

@Override
Expand Down

0 comments on commit 8ee7f30

Please sign in to comment.