From 742109f4d98e7d235fcb8862ce07c8e595922f84 Mon Sep 17 00:00:00 2001 From: Tommi Virtanen Date: Wed, 10 Aug 2011 13:21:39 -0700 Subject: [PATCH] Wait up to 300 seconds for a reboot. At least sepia86 was reliably slower than the previous 180 second default. --- teuthology/task/kernel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/task/kernel.py b/teuthology/task/kernel.py index 0322699cff79f..3745f8d65ef48 100644 --- a/teuthology/task/kernel.py +++ b/teuthology/task/kernel.py @@ -212,7 +212,7 @@ def task(ctx, config): assert config is None or isinstance(config, dict), \ "task kernel only supports a dictionary for configuration" - timeout = 180 + timeout = 300 if config is not None and 'timeout' in config: timeout = config.pop('timeout') -- 2.39.5