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/05/06 22:50:01 UTC

svn commit: r941915 - /incubator/libcloud/trunk/libcloud/drivers/dreamhost.py

Author: pquerna
Date: Thu May  6 20:50:00 2010
New Revision: 941915

URL: http://svn.apache.org/viewvc?rev=941915&view=rev
Log:
add a little todo about the ID in create_node

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

Modified: incubator/libcloud/trunk/libcloud/drivers/dreamhost.py
URL: http://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/dreamhost.py?rev=941915&r1=941914&r2=941915&view=diff
==============================================================================
--- incubator/libcloud/trunk/libcloud/drivers/dreamhost.py (original)
+++ incubator/libcloud/trunk/libcloud/drivers/dreamhost.py Thu May  6 20:50:00 2010
@@ -153,6 +153,7 @@ class DreamhostNodeDriver(NodeDriver):
             'size' : size
         }
         data = self.connection.request('/', params).object
+        # TODO: Is this ID the same as what list_nodes returns?
         return Node(
             id = data['added_' + kwargs['image'].name],
             name = data['added_' + kwargs['image'].name],