It seems like "node" object you are passing to wait_until_running method is in fact "None" and not a "Node" object.
I'm not sure how this could happen though, because driver.create_node should always return a "Node" object and not "None". Can you please gist (https://gist.github.com/) the whole code which reproduces this problem (make sure to remove your credentials and other sensitive data)? On Tue, Sep 3, 2013 at 3:35 PM, Frédéric Michaud < [email protected]> wrote: > hi libcloud,**** > > ** ** > > I create node in amazone it's work correctly,**** > > ** ** > > after that i call:**** > > ** ** > > ec2_conn.wait_until_running([node]) **** > > ** ** > > node it's my node that return from (node = > ec2_conn.create_node(name=nodeName, image=imageToProvision, > size=provisionSize,**** > > ex_securitygroup=securityGroupName, > ex_keyname=keyName))**** > > ** ** > > and the return of wait_until_running is :**** > > ** ** > > *File > "C:\dev\Manticore\automated-server\trunk\src\main\python\ec2Lib.py", line > 120, in createNode***** > > ec2_conn.wait_until_running([node])**** > > *File > "C:\Python27\lib\site-packages\apache_libcloud-0.13.0-py2.7.egg\libcloud\compute\base.py", > line 832, in wait_until_running***** > > uuids = set([n.uuid for n in nodes])**** > > AttributeError: 'NoneType' object has no attribute 'uuid'**** > > ** ** > > uuid is not a member of ec2 node ??**** > > ** ** > > help please**** > > ** ** > > **** > > **** > > Frédéric Michaud**** > > Programmeur client-serveur / Backend programmer > T 418.529.9697 | F 418.529.5869 > www.frimastudio.com**** > ------------------------------ > > Ce courriel pourrait contenir des renseignements confidentiels ou > privilégiés. Si vous n'êtes pas le véritable destinataire, veuillez nous en > aviser immédiatement. Merci. > This email may contain confidential or privileged information. If you are > not the intended recipient, please notify us immediately. Thank you. **** > > ** ** >
