From 2cc4ae1140917f7c81236e0a5e77facd6ead6a7c Mon Sep 17 00:00:00 2001 From: Loic Dachary Date: Fri, 27 Nov 2015 20:51:31 +0100 Subject: [PATCH] openstack: run one job at a time by default Most jobs in rados/thrash allocate six volumes. The default tenant on OVH has ten volumes, that's just not enough for two jobs to run in parallel. Signed-off-by: Loic Dachary --- scripts/openstack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/openstack.py b/scripts/openstack.py index e0b9e049b2..8b3b66f1e6 100644 --- a/scripts/openstack.py +++ b/scripts/openstack.py @@ -51,7 +51,7 @@ and analyze results. '--simultaneous-jobs', help='maximum number of jobs running in parallel', type=int, - default=2, + default=1, ) parser.add_argument( '--teardown', -- 2.39.5