diff options
| author | Naveed Massjouni <naveedm9@gmail.com> | 2011-03-15 18:14:38 -0400 |
|---|---|---|
| committer | Naveed Massjouni <naveedm9@gmail.com> | 2011-03-15 18:14:38 -0400 |
| commit | d4f859803eeb5a123835a3996ccfc64d35dbcb4b (patch) | |
| tree | 1e9997f43a64c4b057d3a7fc86808456534c0185 /nova | |
| parent | 74068a7b504a95dc8e0339faa04c8c5520417f32 (diff) | |
| parent | cc25d277755f0e103ff09144d1d490536ab9acec (diff) | |
| download | nova-d4f859803eeb5a123835a3996ccfc64d35dbcb4b.tar.gz nova-d4f859803eeb5a123835a3996ccfc64d35dbcb4b.tar.xz nova-d4f859803eeb5a123835a3996ccfc64d35dbcb4b.zip | |
Updating paste config.
Diffstat (limited to 'nova')
| -rw-r--r-- | nova/api/openstack/__init__.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/nova/api/openstack/__init__.py b/nova/api/openstack/__init__.py index ce3cff337..0244bc93c 100644 --- a/nova/api/openstack/__init__.py +++ b/nova/api/openstack/__init__.py @@ -128,8 +128,11 @@ class Versions(wsgi.Application): def __call__(self, req): """Respond to a request for all OpenStack API versions.""" response = { - "versions": [ - dict(status="CURRENT", id="v1.0")]} + "versions": [ + dict(status="DEPRECATED", id="v1.0"), + dict(status="CURRENT", id="v1.1"), + ], + } metadata = { "application/xml": { "attributes": dict(version=["status", "id"])}} |
