diff options
| author | Ziad Sawalha <github@highbridgellc.com> | 2011-06-27 21:06:21 -0500 |
|---|---|---|
| committer | Ziad Sawalha <github@highbridgellc.com> | 2011-06-27 21:06:21 -0500 |
| commit | bb7303d96e65226ad428e08db9463231bcb4274c (patch) | |
| tree | 09c8257515113fcbf6796205b718228de95cf000 | |
| parent | 19619a0e772171d2a79e35b465b07186aee2c222 (diff) | |
| download | keystone-bb7303d96e65226ad428e08db9463231bcb4274c.tar.gz keystone-bb7303d96e65226ad428e08db9463231bcb4274c.tar.xz keystone-bb7303d96e65226ad428e08db9463231bcb4274c.zip | |
Fixed identity.wadl response - issue #71#
| -rwxr-xr-x | keystone/server.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/keystone/server.py b/keystone/server.py index 114e6721..acf595ea 100755 --- a/keystone/server.py +++ b/keystone/server.py @@ -566,7 +566,7 @@ class KeystoneAPI(wsgi.Router): conditions=dict(method=["GET"])) mapper.connect("/v2.0/identity.wadl", controller=static_files_controller, - action="get_identity_wadl", + action="get_wadl_contract", conditions=dict(method=["GET"])) mapper.connect("/v2.0/xsd/{xsd}", controller=static_files_controller, @@ -778,7 +778,7 @@ class KeystoneAdminAPI(wsgi.Router): conditions=dict(method=["GET"])) mapper.connect("/v2.0/identity.wadl", controller=static_files_controller, - action="get_identity_wadl", + action="get_wadl_contract", conditions=dict(method=["GET"])) mapper.connect("/v2.0/xsd/{xsd}", controller=static_files_controller, |
