Correct size check on multipart uploads. All parts except last must be > 5MB
This commit is contained in:
parent
b64dbcaa12
commit
d9862aaa65
@ -60,16 +60,15 @@ class FakeMultipart(object):
|
|||||||
self.parts = {}
|
self.parts = {}
|
||||||
self.id = base64.b64encode(os.urandom(43)).replace('=', '').replace('+', '')
|
self.id = base64.b64encode(os.urandom(43)).replace('=', '').replace('+', '')
|
||||||
|
|
||||||
|
|
||||||
def complete(self):
|
def complete(self):
|
||||||
total = bytearray()
|
total = bytearray()
|
||||||
|
last_part_name = len(self.list_parts())
|
||||||
|
|
||||||
for part in self.list_parts():
|
for part in self.list_parts():
|
||||||
|
if part.name != last_part_name and len(part.value) < 5242880:
|
||||||
|
return
|
||||||
total.extend(part.value)
|
total.extend(part.value)
|
||||||
|
|
||||||
if len(total) < 5242880:
|
|
||||||
return
|
|
||||||
|
|
||||||
return total
|
return total
|
||||||
|
|
||||||
def set_part(self, part_id, value):
|
def set_part(self, part_id, value):
|
||||||
|
Loading…
Reference in New Issue
Block a user