diff options
| author | Dan Prince <dan.prince@rackspace.com> | 2011-03-09 10:37:21 -0500 |
|---|---|---|
| committer | Dan Prince <dan.prince@rackspace.com> | 2011-03-09 10:37:21 -0500 |
| commit | 0f45b59ca6f9502a3ae6578e2fca5a7d9575ae5e (patch) | |
| tree | 80407bd1600c0d7212967dbda804dac5802671b6 | |
| parent | 70b3ae5507a7ad92b6f35d7157cf260e7f35f8b7 (diff) | |
| download | nova-0f45b59ca6f9502a3ae6578e2fca5a7d9575ae5e.tar.gz nova-0f45b59ca6f9502a3ae6578e2fca5a7d9575ae5e.tar.xz nova-0f45b59ca6f9502a3ae6578e2fca5a7d9575ae5e.zip | |
Added 'adminPass' to the serialization_metadata.
| -rw-r--r-- | nova/api/openstack/servers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/api/openstack/servers.py b/nova/api/openstack/servers.py index 9581b8477..bbedd7c63 100644 --- a/nova/api/openstack/servers.py +++ b/nova/api/openstack/servers.py @@ -96,7 +96,7 @@ class Controller(wsgi.Controller): 'application/xml': { "attributes": { "server": ["id", "imageId", "name", "flavorId", "hostId", - "status", "progress"]}}} + "status", "progress", "adminPass"]}}} def __init__(self): self.compute_api = compute.API() |
