Skip to content

Commit

Permalink
[upload-docs] increase batch size to 100
Browse files Browse the repository at this point in the history
  • Loading branch information
alxndrsn committed Oct 31, 2017
1 parent decdcd3 commit bd07714
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "medic-configurer-beta",
"version": "1.6.14",
"version": "1.6.15",
"description": "Configure Medic Mobile deployments",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/fn/upload-docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const skipFn = require('../lib/skip-fn');
const trace = require('../lib/log').trace;
const warn = require('../lib/log').warn;

const BATCH_SIZE = 2; // increase to 100
const BATCH_SIZE = 100;

module.exports = (projectDir, couchUrl) => {
if(!couchUrl) return skipFn('no couch URL set');
Expand Down

0 comments on commit bd07714

Please sign in to comment.