-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AttributeError: 'Server' object has no attribute 'cloud_manager' #159
Comments
I got what I did wrong. I forced to create, even if created, and that worked. def destroyServer(self):
self.manager.create_server(self.server)
self.server.stop_and_destroy()
for disk in self.server.storage_devices:
disk.destroy() |
Ok... that wasn ´t a good idea. I ended up creating an extra server every time I tried to destroy the other. So problem remains. |
The creation of the Here are a couple of ideas that came to my mind to try and fix this:
Hope this helps! |
Hi,
I've tried to apply what is describe on the project page to have a server up and running.
My Server builder is like this:
and it works to create the server.
but it is crashing during shutdown and destroy. The code is this below:
And I get the following error:
So I'm not sure whether I did something wrong, but it complains about this missing attribute.
The text was updated successfully, but these errors were encountered: