From 169e174d85c6d48d0cb231baa51be6167a52343a Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Tue, 25 Aug 2020 13:29:22 -0400 Subject: [PATCH] Fix size of test volume to 8GB --- api-daemon/pvcapid/benchmark.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-daemon/pvcapid/benchmark.py b/api-daemon/pvcapid/benchmark.py index f190dd1b..6d662813 100755 --- a/api-daemon/pvcapid/benchmark.py +++ b/api-daemon/pvcapid/benchmark.py @@ -161,7 +161,7 @@ def run_benchmark(self, pool): volume = 'pvcbenchmark' # Create the RBD volume - retcode, retmsg = pvc_ceph.add_volume(zk_conn, pool, volume, "4G") + retcode, retmsg = pvc_ceph.add_volume(zk_conn, pool, volume, "8G") if not retcode: raise BenchmarkError('Failed to create volume "{}": {}'.format(volume, retmsg), cur_time=cur_time, db_conn=db_conn, db_cur=db_cur, zk_conn=zk_conn) else: