Lower the local upload limit

This commit is contained in:
bcmmbaga
2026-09-09 18:35:52 +03:00
parent e5900f493c
commit 3c57b3d6d2
+1 -1
View File
@@ -92,7 +92,7 @@ func (l *local) getUploadURL(objectKey string) (string, error) {
return newURL.String(), nil
}
const maxUploadSize = 150 << 20
const maxUploadSize = 50 << 20
func (l *local) handlePutRequest(w http.ResponseWriter, r *http.Request) {
if r.Method != http.MethodPut {