Skip to content

Commit c1ca10d

Browse files
committed
Merge branch 'dev' into akharit-bugfixes
2 parents f3168a8 + eb585b4 commit c1ca10d

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

HISTORY.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
Release History
44
===============
55

6+
0.0.39 (2018-11-14)
7+
+++++++++++++++++++
8+
* Fix for Chunked Decoding exception thrown while reading response.content
9+
610
0.0.38 (2018-11-12)
711
+++++++++++++++++++
812
* Added support for recursive acl functions

azure/datalake/store/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# license information.
77
# --------------------------------------------------------------------------
88

9-
__version__ = "0.0.38"
9+
__version__ = "0.0.39"
1010

1111

1212
from .core import AzureDLFileSystem

azure/datalake/store/lib.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -414,6 +414,8 @@ def call(self, op, path='', is_extended=False, expected_error_code=None, retry_p
414414
path=path,
415415
headers=headers,
416416
**kwargs)
417+
# Trigger download here so any errors can be retried. response.content is cached for future use.
418+
temp_download = response.content
417419
except requests.exceptions.RequestException as e:
418420
last_exception = e
419421
response = None

0 commit comments

Comments
 (0)