From 2728ed18edc09305a99f10304979ece7de1eef36 Mon Sep 17 00:00:00 2001 From: Joe Gregorio Date: Fri, 16 Nov 2012 15:48:26 -0500 Subject: [PATCH] Reduce limit for turning GETs into POSTs to accomodate App Engine. Reviewed in https://codereview.appspot.com/6852061/. --- apiclient/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 @@ from oauth2client.anyjson import simplejson DEFAULT_CHUNK_SIZE = 512*1024 -MAX_URI_LENGTH = 4000 +MAX_URI_LENGTH = 2048 class MediaUploadProgress(object):