Author: tomaz
Date: Sat Jun 8 19:30:53 2013
New Revision: 1491042
URL: http://svn.apache.org/r1491042
Log:
Fix bandwith unit in the Gandi compute driver.
Contributed by Aymeric Barantal, part of LIBCLOUD-317.
Modified:
libcloud/trunk/libcloud/compute/drivers/gandi.py
Modified: libcloud/trunk/libcloud/compute/drivers/gandi.py
URL:
http://svn.apache.org/viewvc/libcloud/trunk/libcloud/compute/drivers/gandi.py?rev=1491042&r1=1491041&r2=1491042&view=diff
==============================================================================
--- libcloud/trunk/libcloud/compute/drivers/gandi.py (original)
+++ libcloud/trunk/libcloud/compute/drivers/gandi.py Sat Jun 8 19:30:53 2013
@@ -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,
},
}