]> git-server-git.apps.pok.os.sepia.ceph.com Git - teuthology.git/commitdiff
workunit: change timeout 1h -> 3h
authorSage Weil <sage@inktank.com>
Sun, 9 Mar 2014 17:29:37 +0000 (10:29 -0700)
committerSage Weil <sage@inktank.com>
Sun, 9 Mar 2014 17:29:37 +0000 (10:29 -0700)
Signed-off-by: Sage Weil <sage@inktank.com>
teuthology/task/workunit.py

index d63f8ab92cbfa9ca2970c725f154526717c498ec..b504eeb50c58d4a1273eeec6a101532139cace88 100644 (file)
@@ -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)