From a4dfbc88f39e57538c5c2594eb1d771ba69d79be Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Sun, 9 Mar 2014 10:29:37 -0700 Subject: [PATCH] workunit: change timeout 1h -> 3h Signed-off-by: Sage Weil --- teuthology/task/workunit.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/teuthology/task/workunit.py b/teuthology/task/workunit.py index d63f8ab92c..b504eeb50c 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) -- 2.39.5