Skip to content

Commit

Permalink
Update history
Browse files Browse the repository at this point in the history
  • Loading branch information
akharit committed Oct 31, 2018
1 parent a3bc5c7 commit e1605c3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Release History
===============

0.0.36 (2018-10-31)
+++++++++++++++++++
* Fixed typo in refresh_token call

0.0.35 (2018-10-29)
+++++++++++++++++++
* Added retry for getting tokens
Expand Down
2 changes: 1 addition & 1 deletion azure/datalake/store/lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def signed_session(self, retry_policy=None):
"""
session = requests.Session()
if time.time() - self.token['time'] > self.token['expiresIn'] - 100:
self.refresh_token(retry_poliy=retry_policy)
self.refresh_token(retry_policy=retry_policy)

scheme, token = self.token['tokenType'], self.token['access']
header = "{} {}".format(scheme, token)
Expand Down

0 comments on commit e1605c3

Please sign in to comment.