Re: Minimal client sending "Connection: keep-alive"

2018-12-24 Thread Oleg Kalnichevski
On Mon, 2018-12-24 at 01:05 +0100, Michael Osipov wrote: > Am 2018-12-23 um 23:21 schrieb Oleg Kalnichevski: > > On Sun, 2018-12-23 at 22:07 +0100, Michael Osipov wrote: > > > Folks, > > > > > > why does a minimal client: > > > > HttpClientBuilder bulder = > > > > HttpClientBuilder.create().disabl

Re: Minimal client sending "Connection: keep-alive"

2018-12-23 Thread Michael Osipov
Am 2018-12-24 um 01:05 schrieb Michael Osipov: Am 2018-12-23 um 23:21 schrieb Oleg Kalnichevski: On Sun, 2018-12-23 at 22:07 +0100, Michael Osipov wrote: Folks, why does a minimal client: HttpClientBuilder bulder = HttpClientBuilder.create().disableContentCompression(); CloseableHttpClient cl

Re: Minimal client sending "Connection: keep-alive"

2018-12-23 Thread Michael Osipov
Am 2018-12-23 um 23:21 schrieb Oleg Kalnichevski: On Sun, 2018-12-23 at 22:07 +0100, Michael Osipov wrote: Folks, why does a minimal client: HttpClientBuilder bulder = HttpClientBuilder.create().disableContentCompression(); CloseableHttpClient client = bulder.build(); CloseableHttpResponse res

Re: Minimal client sending "Connection: keep-alive"

2018-12-23 Thread Oleg Kalnichevski
On Sun, 2018-12-23 at 22:07 +0100, Michael Osipov wrote: > Folks, > > why does a minimal client: > > HttpClientBuilder bulder = > > HttpClientBuilder.create().disableContentCompression(); > > CloseableHttpClient client = bulder.build(); > > CloseableHttpResponse resp = client.execute(new HttpGet("

Minimal client sending "Connection: keep-alive"

2018-12-23 Thread Michael Osipov
Folks, why does a minimal client: HttpClientBuilder bulder = HttpClientBuilder.create().disableContentCompression(); CloseableHttpClient client = bulder.build(); CloseableHttpResponse resp = client.execute(new HttpGet("https://google.de";)); EntityUtils.consumeQuietly(resp.getEntity()); still