Reduce limit for turning GETs into POSTs to accomodate App Engine.

Reviewed in https://codereview.appspot.com/6852061/.
This commit is contained in:
Joe Gregorio
2012-11-16 15:48:26 -05:00
parent ff828af78c
commit 2728ed18ed

View File

@@ -51,7 +51,7 @@ from oauth2client.anyjson import simplejson
DEFAULT_CHUNK_SIZE = 512*1024
MAX_URI_LENGTH = 4000
MAX_URI_LENGTH = 2048
class MediaUploadProgress(object):