From 745c878a7fab75ffcf193c5553ae88e78bef8eec Mon Sep 17 00:00:00 2001
From: Iustin Pop <iustin@google.com>
Date: Mon, 3 May 2010 17:18:19 +0200
Subject: [PATCH] qa: enable early release during parallel burnin

With this, the burnin sequence on big clusters should be (much?) faster.
The patch also fixes the parallel setting (before it was always
enabled).

Signed-off-by: Iustin Pop <iustin@google.com>
Reviewed-by: Guido Trotter <ultrotter@google.com>
---
 qa/qa_cluster.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/qa/qa_cluster.py b/qa/qa_cluster.py
index 371fea325..09782e5c9 100644
--- a/qa/qa_cluster.py
+++ b/qa/qa_cluster.py
@@ -236,13 +236,13 @@ def TestClusterBurnin():
     try:
       # Run burnin
       cmd = [script,
-             '-p',
              '--os=%s' % qa_config.get('os'),
              '--disk-size=%s' % ",".join(qa_config.get('disk')),
              '--disk-growth=%s' % ",".join(qa_config.get('disk-growth')),
              '--disk-template=%s' % disk_template]
       if parallel:
         cmd.append('--parallel')
+        cmd.append('--early-release')
       if check_inst:
         cmd.append('--http-check')
       if do_rename:
-- 
GitLab