]> review.fuel-infra Code Review - openstack-build/cinder-build.git/commit
Fix volumes search by metadata
authorMathieu Gagné <mgagne@iweb.com>
Wed, 26 Jun 2013 20:27:43 +0000 (16:27 -0400)
committerSeif Lotfy <s.lotfy@telekom.de>
Sun, 21 Jul 2013 10:05:53 +0000 (10:05 +0000)
commit76fc407382315a97cc020e8592199609b3a6a8e9
treede261624b3f76c9921c297b04727cd194cc18e66
parent6e95e1ab3e737d1de356b4542d9f408e5bce2324
Fix volumes search by metadata

The metadata parameter is urlencoded (to string) by cinderclient
but isn't decoded back to dict by the API.

The metadata parameter needs to be converted back to dict
to be of any use by the filters parameter of get_all().

The original implementation has been done by:
Mathieu Gagne <mgagne@iweb.com>

Fixes: bug #1195015
Change-Id: I19d7d386afddddc067e9f4ef86967c9b72d9e530
cinder/api/v1/volumes.py
cinder/api/v2/volumes.py
cinder/tests/api/v1/test_volumes.py
cinder/tests/api/v2/test_volumes.py