Skip to content

Commit

Permalink
address xiang's comments
Browse files Browse the repository at this point in the history
  • Loading branch information
iscai-msft committed Aug 31, 2021
1 parent c428a6b commit f9f40a1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion sdk/core/azure-core/azure/core/_pipeline_client_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,6 @@ async def _make_pipeline_call(self, request, **kwargs):
# to the internal content
rest_response._content = response.body() # pylint: disable=protected-access
await rest_response._set_read_checks() # pylint: disable=protected-access
await rest_response.close()
except Exception as exc:
await rest_response.close()
raise exc
Expand Down
2 changes: 1 addition & 1 deletion sdk/core/azure-core/azure/core/rest/_aiohttp.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def __init__(
self,
*,
internal_response,
decompress: bool = False,
decompress: bool = True,
**kwargs
):
super().__init__(
Expand Down

0 comments on commit f9f40a1

Please sign in to comment.