Fix size of test volume to 8GB

This commit is contained in:
Joshua Boniface 2020-08-25 13:29:22 -04:00
parent 354150f757
commit 169e174d85
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ def run_benchmark(self, pool):
volume = 'pvcbenchmark' volume = 'pvcbenchmark'
# Create the RBD volume # 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: 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) 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: else: