Browse Source

Increase delay between git push due to issues with flooding

pull/1944/head
jlukic 9 years ago
parent
commit
2b52ce349f
1 changed files with 2 additions and 2 deletions
  1. 4
      tasks/admin/components/update.js

4
tasks/admin/components/update.js

@ -63,7 +63,7 @@ module.exports = function(callback) {
}
var
component = release.components[index]
component = release.components[index],
outputDirectory = path.resolve(path.join(release.outputRoot, component)),
capitalizedComponent = component.charAt(0).toUpperCase() + component.slice(1),
repoName = release.componentRepoRoot + capitalizedComponent,
@ -166,7 +166,7 @@ module.exports = function(callback) {
console.log('Sleeping for 1 second...');
// avoid rate throttling
global.clearTimeout(timer);
timer = global.setTimeout(stepRepo, 500);
timer = global.setTimeout(stepRepo, 1000);
}

Loading…
Cancel
Save