Merge "Fix listing objects in s3 driver"

This commit is contained in:
Jenkins 2017-07-20 13:41:28 +00:00 committed by Gerrit Code Review
commit 6231909461

View File

@ -276,6 +276,7 @@ class S3Storage(physical.PhysicalStorage):
all_objects.extend(response['Contents'])
is_truncated = response['IsTruncated']
marker = response['Contents'][-1]['Key']
return all_objects
def put_object(self, bucket_name, key, data):