From 9e2d6d6b136cbdc956154c170b47f4f7309ff70a Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Sun, 7 Sep 2008 19:08:13 -0400 Subject: [PATCH] Default volume allocation to 0, since nonsparse creation blocks the whole app. --- src/virtManager/createvol.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/virtManager/createvol.py b/src/virtManager/createvol.py index 0b2a2b288..00e147107 100644 --- a/src/virtManager/createvol.py +++ b/src/virtManager/createvol.py @@ -33,8 +33,8 @@ from virtManager.connection import vmmConnection from virtinst import Storage -DEFAULT_ALLOC = 6000 -DEFAULT_CAP = 6000 +DEFAULT_ALLOC = 0 +DEFAULT_CAP = 1000 class vmmCreateVolume(gobject.GObject): __gsignals__ = {