From 2b52ce349f78f5cf5424d933d78dbdaaa459974e Mon Sep 17 00:00:00 2001 From: jlukic Date: Fri, 6 Mar 2015 18:26:19 -0500 Subject: [PATCH] Increase delay between git push due to issues with flooding --- tasks/admin/components/update.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/admin/components/update.js b/tasks/admin/components/update.js index a8ff643ec..a7e94f335 100644 --- a/tasks/admin/components/update.js +++ b/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); }