Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(785)

Unified Diff: app/models/package.py

Issue 1031663002: Increase maximum file upload to 100MB, use cloudstorage python library (Closed) Base URL: https://github.com/dart-lang/pub-dartlang.git@master
Patch Set: Add deprecation comment to old cloud_storage.py:open() function Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « app/handlers/cloud_storage.py ('k') | third_party/cloud_storage/MANIFEST.in » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: app/models/package.py
diff --git a/app/models/package.py b/app/models/package.py
index bc6bc1fef7e221b288452f00278f3e368540ad01..7beceb0083fdc01e94599343508aee05ac02c09c 100644
--- a/app/models/package.py
+++ b/app/models/package.py
@@ -25,7 +25,7 @@ class Package(db.Model):
package is discarded.
"""
- MAX_SIZE = 10 * 2**20 # 10MB
+ MAX_SIZE = 100 * 2**20 # 100MB
"""The maximum package size, in bytes."""
uploaderEmails = db.StringListProperty(validator=models.validate_not_empty)
« no previous file with comments | « app/handlers/cloud_storage.py ('k') | third_party/cloud_storage/MANIFEST.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698