commit | 2728ed18edc09305a99f10304979ece7de1eef36 | [log] [tgz] |
---|---|---|
author | Joe Gregorio <jcgregorio@google.com> | Fri Nov 16 15:48:26 2012 -0500 |
committer | Joe Gregorio <jcgregorio@google.com> | Fri Nov 16 15:48:26 2012 -0500 |
tree | 2db0e7303909e59de5c633722fd73db304f6c60a | |
parent | ff828af78cf51c3f058b16da562946e4df4075a3 [diff] |
Reduce limit for turning GETs into POSTs to accomodate App Engine. Reviewed in https://codereview.appspot.com/6852061/.
diff --git a/apiclient/http.py b/apiclient/http.py index 569815a..d590d1b 100644 --- a/apiclient/http.py +++ b/apiclient/http.py
@@ -51,7 +51,7 @@ DEFAULT_CHUNK_SIZE = 512*1024 -MAX_URI_LENGTH = 4000 +MAX_URI_LENGTH = 2048 class MediaUploadProgress(object):