From: Sage Weil Date: Sun, 9 Mar 2014 17:29:37 +0000 (-0700) Subject: workunit: change timeout 1h -> 3h X-Git-Tag: 1.1.0~1606 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=a4dfbc88f39e57538c5c2594eb1d771ba69d79be;p=teuthology.git workunit: change timeout 1h -> 3h Signed-off-by: Sage Weil --- diff --git a/teuthology/task/workunit.py b/teuthology/task/workunit.py index d63f8ab9..b504eeb5 100644 --- a/teuthology/task/workunit.py +++ b/teuthology/task/workunit.py @@ -41,7 +41,7 @@ def task(ctx, config): for individual clients. (This prevents unintended simultaneous runs.) To customize tests, you can specify environment variables as a dict. You - can also specify a time limit for each work unit (defaults to 1h): + can also specify a time limit for each work unit (defaults to 3h): tasks: - ceph: @@ -53,7 +53,7 @@ def task(ctx, config): env: FOO: bar BAZ: quux - timeout: 1h + timeout: 3h :param ctx: Context :param config: Configuration @@ -73,7 +73,7 @@ def task(ctx, config): if refspec is None: refspec = 'HEAD' - timeout = config.get('timeout', '1h') + timeout = config.get('timeout', '3h') log.info('Pulling workunits from ref %s', refspec)