commit | cb2ce4f35c31f8f3abea14f57f9fbf96cbaf0c06 | [log] [tgz] |
---|---|---|
author | Craig Citro <craigcitro@gmail.com> | Thu Mar 01 09:28:06 2018 -0800 |
committer | GitHub <noreply@github.com> | Thu Mar 01 09:28:06 2018 -0800 |
tree | f6a9bd315e7031c0afee5021f79b3412a51809da | |
parent | d9f47bd91b1a17ce971381f00360b9252b1aab8e [diff] | |
parent | d1aa691facb8952f460599eb309c68357ee3d562 [diff] |
Merge pull request #482 from craigcitro/chunksize Increase the default media chunksize to 100MB.
diff --git a/googleapiclient/http.py b/googleapiclient/http.py index d492aba..66af5d8 100644 --- a/googleapiclient/http.py +++ b/googleapiclient/http.py
@@ -74,7 +74,7 @@ LOGGER = logging.getLogger(__name__) -DEFAULT_CHUNK_SIZE = 512*1024 +DEFAULT_CHUNK_SIZE = 100*1024*1024 MAX_URI_LENGTH = 2048