Skip to content

Commit 8c51107

Browse files
committed
Max Parallel Files limit raised from 4 to 32
1 parent e6a3747 commit 8c51107

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/boot/Config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ var ValueToColor = require('../display/color/ValueToColor');
4040
* @property {string} [baseURL] - [description]
4141
* @property {string} [path] - [description]
4242
* @property {boolean} [enableParallel=true] - [description]
43-
* @property {integer} [maxParallelDownloads=4] - [description]
43+
* @property {integer} [maxParallelDownloads=32] - [description]
4444
* @property {(string|undefined)} [crossOrigin=undefined] - [description]
4545
* @property {string} [responseType] - [description]
4646
* @property {boolean} [async=true] - [description]
@@ -237,7 +237,7 @@ var Config = new Class({
237237
this.loaderBaseURL = GetValue(config, 'loader.baseURL', '');
238238
this.loaderPath = GetValue(config, 'loader.path', '');
239239
this.loaderEnableParallel = GetValue(config, 'loader.enableParallel', true);
240-
this.loaderMaxParallelDownloads = GetValue(config, 'loader.maxParallelDownloads', 4);
240+
this.loaderMaxParallelDownloads = GetValue(config, 'loader.maxParallelDownloads', 32);
241241
this.loaderCrossOrigin = GetValue(config, 'loader.crossOrigin', undefined);
242242
this.loaderResponseType = GetValue(config, 'loader.responseType', '');
243243
this.loaderAsync = GetValue(config, 'loader.async', true);

0 commit comments

Comments
 (0)