Skip to content

Commit 177bb52

Browse files
committed
change order of size multiplication (nit)
1 parent b4aa6da commit 177bb52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

minio_storage/files.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ class ReadOnlySpooledTemporaryFile(MinioStorageFile, ReadOnlyMixin):
100100
"""A django File class which buffers the minio object into a local
101101
SpooledTemporaryFile."""
102102

103-
max_memory_size: int = 1024 * 1024 * 10
103+
max_memory_size: int = 10 * 1024 * 1024
104104

105105
def __init__(
106106
self,

0 commit comments

Comments
 (0)