File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 1
1
django-s3-storage changelog
2
2
===========================
3
3
4
+ 0.13.11
5
+ -------
6
+
7
+ - Added ``AWS_S3_CONNECT_TIMEOUT `` setting (@roriz).
8
+
4
9
0.13.10
5
10
-------
6
11
Original file line number Diff line number Diff line change @@ -120,6 +120,12 @@ Use the following settings to configure the S3 file storage. You must provide at
120
120
# is used it must be disabled
121
121
AWS_S3_USE_THREADS = True
122
122
123
+ # Max pool of connections for massive S3 interactions
124
+ AWS_S3_MAX_POOL_CONNECTIONS = 10
125
+
126
+ # Time to raise timeout when submitting a new file
127
+ AWS_S3_CONNECT_TIMEOUT = 60
128
+
123
129
**Important: ** Several of these settings (noted above) will not affect existing files. To sync the new settings to
124
130
existing files, run ``./manage.py s3_sync_meta django.core.files.storage.default_storage ``.
125
131
You can’t perform that action at this time.
0 commit comments