File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -122,10 +122,10 @@ class InputZipFile : public ZipExtractor {
122
122
// not enough, we bail out. We only decompress class files, so they should
123
123
// be smaller than 64K anyway, but we give a little leeway.
124
124
// MAX_BUFFER_SIZE must be bigger than the size of the biggest file in the
125
- // ZIP. It is set to 128M here so we can uncompress the Bazel server with
125
+ // ZIP. It is set to 256M here so we can uncompress the Bazel server with
126
126
// this library.
127
127
static const size_t INITIAL_BUFFER_SIZE = 256 * 1024 ; // 256K
128
- static const size_t MAX_BUFFER_SIZE = 128 * 1024 * 1024 ;
128
+ static const size_t MAX_BUFFER_SIZE = 256 * 1024 * 1024 ;
129
129
static const size_t MAX_MAPPED_REGION = 32 * 1024 * 1024 ;
130
130
131
131
// These metadata fields are the fields of the ZIP header of the file being
You can’t perform that action at this time.
0 commit comments