> @@ -100,7 +100,7 @@ protected HttpResponse invoke(HttpURLConnection
> connection) throws IOException,
> HttpResponse.Builder<?> builder = HttpResponse.builder();
> InputStream in = null;
> try {
> - in = consumeOnClose(connection.getInputStream());
> + in = connection.getInputStream();
What, if any, impact will this change of functionality have on callers? Why
were we consuming the input stream on close in the first place?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/435/files#r14686796