Skip to content

Commit

Permalink
Merge branch 'dev' into akharit-bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
akharit committed Jan 4, 2019
2 parents f3168a8 + eb585b4 commit c1ca10d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions HISTORY.rst
Expand Up @@ -3,6 +3,10 @@
Release History
===============

0.0.39 (2018-11-14)
+++++++++++++++++++
* Fix for Chunked Decoding exception thrown while reading response.content

0.0.38 (2018-11-12)
+++++++++++++++++++
* Added support for recursive acl functions
Expand Down
2 changes: 1 addition & 1 deletion azure/datalake/store/__init__.py
Expand Up @@ -6,7 +6,7 @@
# license information.
# --------------------------------------------------------------------------

__version__ = "0.0.38"
__version__ = "0.0.39"


from .core import AzureDLFileSystem
Expand Down
2 changes: 2 additions & 0 deletions azure/datalake/store/lib.py
Expand Up @@ -414,6 +414,8 @@ def call(self, op, path='', is_extended=False, expected_error_code=None, retry_p
path=path,
headers=headers,
**kwargs)
# Trigger download here so any errors can be retried. response.content is cached for future use.
temp_download = response.content
except requests.exceptions.RequestException as e:
last_exception = e
response = None
Expand Down

0 comments on commit c1ca10d

Please sign in to comment.