From 7d50411ca93881d3e53220cee93b2c0a099a3487 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Sat, 18 Aug 2012 20:10:54 -0700 Subject: [PATCH] rbd.xfstests: default to 1gb (not 250mb) image --- teuthology/task/rbd.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/teuthology/task/rbd.py b/teuthology/task/rbd.py index 303d3ab5a556e..fff8be384c2a7 100644 --- a/teuthology/task/rbd.py +++ b/teuthology/task/rbd.py @@ -505,9 +505,9 @@ def xfstests(ctx, config): properties = {} test_image = properties.get('test_image', 'test_image') - test_size = properties.get('test_size', 250) + test_size = properties.get('test_size', 1000) scratch_image = properties.get('scratch_image', 'scratch_image') - scratch_size = properties.get('scratch_size', 250) + scratch_size = properties.get('scratch_size', 1000) test_image_config = {} test_image_config['image_name'] = test_image -- 2.39.5