Merge pull request #6600 from nagarajasr:master

* pr/6600:
  Apply sytem properties on HttpClient
This commit is contained in:
Stephane Nicoll
2016-08-10 09:24:33 +02:00

View File

@@ -76,7 +76,7 @@ class InitializrService {
protected CloseableHttpClient getHttp() {
if (this.http == null) {
this.http = HttpClientBuilder.create().build();
this.http = HttpClientBuilder.create().useSystemProperties().build();
}
return this.http;
}