]> review.fuel-infra Code Review - openstack-build/cinder-build.git/commit
Fixes issues found in /os-hosts API
authorFei Long Wang <flwang@cn.ibm.com>
Sun, 3 Mar 2013 08:48:22 +0000 (16:48 +0800)
committerFei Long Wang <flwang@cn.ibm.com>
Tue, 5 Mar 2013 14:10:57 +0000 (22:10 +0800)
commit6d2693a13e9b33da6b13e13f587f99a20b2fe2d0
tree15428303890573779d203a6a944e50cf2bfd093a
parent15962a4d13334b2265120e67ab4222b119e95c3e
Fixes issues found in /os-hosts API

There are some issues found in Cinder /os-hosts API:

1) Bracket in the wrong spot in Cinder HostController show method
There is an erroneous bracket on the following line in the show method
that should be at the end of the response:
   'total_volume_gb': str(sum)},

2) XML Attributes Missing for List/Index method in Cinder HostController
The HostIndexTemplate class specifies mapping for "host" and "topic"
attributes rather than any of the ones that are actually returned from
the index method.

3) XML Serialization is commented for Cinder HostController show method

Fixes Bug: 1139984

Change-Id: I881e80b5e109ed6ddcc4f7c4bf5749ab6dca563d
cinder/api/contrib/hosts.py
cinder/tests/api/contrib/test_hosts.py