You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by pq...@apache.org on 2010/08/13 01:30:00 UTC

svn commit: r985040 - /incubator/libcloud/trunk/libcloud/drivers/elastichosts.py

Author: pquerna
Date: Thu Aug 12 23:29:59 2010
New Revision: 985040

URL: http://svn.apache.org/viewvc?rev=985040&view=rev
Log:
Pass the smp setting on to the API.

Modified:
    incubator/libcloud/trunk/libcloud/drivers/elastichosts.py

Modified: incubator/libcloud/trunk/libcloud/drivers/elastichosts.py
URL: http://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/elastichosts.py?rev=985040&r1=985039&r2=985040&view=diff
==============================================================================
--- incubator/libcloud/trunk/libcloud/drivers/elastichosts.py (original)
+++ incubator/libcloud/trunk/libcloud/drivers/elastichosts.py Thu Aug 12 23:29:59 2010
@@ -339,7 +339,7 @@ class ElasticHostsBaseNodeDriver(NodeDri
 
         node_data = {}
         node_data.update({'name': kwargs['name'], 'cpu': size.cpu, 'mem': size.ram, 'ide:0:0': drive_uuid,
-                          'boot': 'ide:0:0'})
+                          'boot': 'ide:0:0', 'smp': smp})
         node_data.update({'nic:0:model': nic_model, 'nic:0:dhcp': 'auto'})
 
         if vnc_password: