Skip to content

Commit

Permalink
fix(interfaces): retry should never have been commented out
Browse files Browse the repository at this point in the history
  • Loading branch information
william-silversmith committed Sep 2, 2020
1 parent 7d6a599 commit 867f700
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cloudfiles/interfaces.py
Expand Up @@ -377,7 +377,7 @@ def put_file(self, file_path, content, content_type, compress, cache_control=Non
blob.md5_hash = md5(content)
blob.upload_from_string(content, content_type)

# @retry
@retry
def get_file(self, file_path, start=None, end=None):
key = self.get_path_to_file(file_path)
blob = self._bucket.blob( key )
Expand Down

0 comments on commit 867f700

Please sign in to comment.