From 0144daf6b61e2c7c31a0f2443373d60792274ad9 Mon Sep 17 00:00:00 2001 From: Aymeric Barantal Date: Sat, 8 Jun 2013 12:04:02 +0200 Subject: [PATCH] bad unit for bandwidth node catalog --- libcloud/compute/drivers/gandi.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git libcloud/compute/drivers/gandi.py libcloud/compute/drivers/gandi.py index 1278173..32d0a48 100644 --- libcloud/compute/drivers/gandi.py +++ libcloud/compute/drivers/gandi.py @@ -46,7 +46,7 @@ INSTANCE_TYPES = { 'cpu': 1, 'memory': 256, 'disk': 3, - 'bandwidth': 100, + 'bandwidth': 10240, }, 'medium': { 'id': 'medium', @@ -54,7 +54,7 @@ INSTANCE_TYPES = { 'cpu': 1, 'memory': 1024, 'disk': 20, - 'bandwidth': 100, + 'bandwidth': 10240, }, 'large': { 'id': 'large', @@ -62,7 +62,7 @@ INSTANCE_TYPES = { 'cpu': 2, 'memory': 2048, 'disk': 50, - 'bandwidth': 100, + 'bandwidth': 10240, }, 'extra-large': { 'id': 'x-large', @@ -70,7 +70,7 @@ INSTANCE_TYPES = { 'cpu': 4, 'memory': 4096, 'disk': 100, - 'bandwidth': 100, + 'bandwidth': 10240, }, } -- 1.8.0.2