From 204b3ac710a5f27225866ddbfd94df7728f843c9 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Fri, 7 Mar 2014 15:14:50 -0600 Subject: [PATCH] Change default workunit timeout to 1h Signed-off-by: Zack Cerza --- 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 fa34c7d70b..a0c438f968 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 6h): + can also specify a time limit for each work unit (defaults to 1h): tasks: - ceph: @@ -53,7 +53,7 @@ def task(ctx, config): env: FOO: bar BAZ: quux - timeout: 6h + timeout: 1h :param ctx: Context :param config: Configuration @@ -73,7 +73,7 @@ def task(ctx, config): if refspec is None: refspec = 'HEAD' - timeout = config.get('timeout', '6h') + timeout = config.get('timeout', '1h') log.info('Pulling workunits from ref %s', refspec) -- 2.39.5