You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by db...@apache.org on 2016/01/21 21:52:33 UTC

cordova-medic git commit: Factored out some constants.

Repository: cordova-medic
Updated Branches:
  refs/heads/master a40181e17 -> 9160c3d3e


Factored out some constants.


Project: http://git-wip-us.apache.org/repos/asf/cordova-medic/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-medic/commit/9160c3d3
Tree: http://git-wip-us.apache.org/repos/asf/cordova-medic/tree/9160c3d3
Diff: http://git-wip-us.apache.org/repos/asf/cordova-medic/diff/9160c3d3

Branch: refs/heads/master
Commit: 9160c3d3e23dd07b15ea9cf901832bcd894d99e5
Parents: a40181e
Author: Dmitry Blotsky <dm...@gmail.com>
Authored: Thu Jan 21 12:52:28 2016 -0800
Committer: Dmitry Blotsky <dm...@gmail.com>
Committed: Thu Jan 21 12:52:28 2016 -0800

----------------------------------------------------------------------
 buildbot-conf/cordova.conf | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-medic/blob/9160c3d3/buildbot-conf/cordova.conf
----------------------------------------------------------------------
diff --git a/buildbot-conf/cordova.conf b/buildbot-conf/cordova.conf
index e7b2355..569ac3d 100644
--- a/buildbot-conf/cordova.conf
+++ b/buildbot-conf/cordova.conf
@@ -47,6 +47,8 @@ TEST_RUN_TIMEOUT       = medic_config['app']['timeout'] # in seconds
 LOG_GETTING_TIMEOUT    = 30 # in seconds
 TEST_SUMMARY_FILE_NAME = 'test_summary.json'
 MASTER_HOSTNAME        = socket.gethostname()
+GIT_RETRY_DELAY        = 10
+GIT_RETRY_TIMES        = 3
 
 CORDOVA_SUPPORTED_CATEGORY   = 'cordova'
 CORDOVA_UNSUPPORTED_CATEGORY = 'cordova-medic-unsupported'
@@ -177,7 +179,7 @@ def NPMLink(**kwargs):
     return NPM('link', **kwargs)
 
 def Clone(repourl, **kwargs):
-    return DescribedStep(Git, 'cloning', repourl=repourl, mode='full', method='clean', shallow=False, retryFetch=True, retry=(10, 3), **kwargs)
+    return DescribedStep(Git, 'cloning', repourl=repourl, mode='full', method='clean', shallow=False, retryFetch=True, retry=(GIT_RETRY_DELAY, GIT_RETRY_TIMES), **kwargs)
 
 def CodebaseClone(codebase, *args, **kwargs):
     return Clone(repourl=I('%(src:' + codebase + ':repository)s'), codebase=codebase, workdir=codebase, **kwargs)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org