From 867f70031935f9ffa6fa3cf02702aac2ad41453f Mon Sep 17 00:00:00 2001 From: William Silversmith Date: Wed, 2 Sep 2020 14:00:26 -0400 Subject: [PATCH] fix(interfaces): retry should never have been commented out --- cloudfiles/interfaces.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloudfiles/interfaces.py b/cloudfiles/interfaces.py index 0f30d42..429994d 100644 --- a/cloudfiles/interfaces.py +++ b/cloudfiles/interfaces.py @@ -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 )