Skip to content

Commit 75d8989

Browse files
committed
Reduce simultaneous uploads which might be negatively affecting local GAE
1 parent 7356b05 commit 75d8989

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

skit/lk/public/screenshots/dashboard/__id__/preview/ScreenshotsPreview.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ module.exports = Controller.create(Dashboard, {
307307
var uploadQueue = new AsyncTaskQueue();
308308
// A lot of the upload time is spent waiting on App Engine to finish,
309309
// so we can probably afford to do multiple uploads at once.
310-
uploadQueue.setConcurrency(2);
310+
uploadQueue.setConcurrency(1);
311311

312312
iter.forEach(this.canvasWrappers, function(wrapper, i) {
313313
var t = new RenderAndConvertCanvasTask(wrapper, hq);

0 commit comments

Comments
 (0)