Skip to content

Commit

Permalink
[azure] Propagate timeout to file fetching (#727)
Browse files Browse the repository at this point in the history
  • Loading branch information
jschneier committed Jul 22, 2019
1 parent 28a45a8 commit 44fe769
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storages/backends/azure_storage.py
Expand Up @@ -48,7 +48,7 @@ def _get_file(self):
blob_name=self._path,
stream=file,
max_connections=1,
timeout=10)
timeout=self._storage.timeout)
if 'r' in self._mode:
file.seek(0)

Expand Down

0 comments on commit 44fe769

Please sign in to comment.