From c7ff5fc38b456c05f5a57c837965916b12cab409 Mon Sep 17 00:00:00 2001 From: Josh Durgin Date: Thu, 22 Sep 2011 18:23:36 -0700 Subject: [PATCH] queue: results_timeout needs to be converted to a string --- teuthology/queue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/queue.py b/teuthology/queue.py index 3caf5e2dba98b..260be8e2d5b0b 100644 --- a/teuthology/queue.py +++ b/teuthology/queue.py @@ -82,7 +82,7 @@ describe. One job is run at a time. args = [ os.path.join(os.path.dirname(sys.argv[0]), 'teuthology-results'), '--timeout', - job_config.get('results_timeout', '21600'), + str(job_config.get('results_timeout', 21600)), '--email', job_config['email'], '--archive-dir', -- 2.39.5