diff options
| author | Joshua McKenty <jmckenty@gmail.com> | 2010-06-24 04:11:55 +0100 |
|---|---|---|
| committer | andy <github@anarkystic.com> | 2010-06-24 04:11:55 +0100 |
| commit | 8c535fae46a6944e1ca5fd8bb44db739befb0054 (patch) | |
| tree | 28b1a2f1a73c9a763b96f08d403b59d9eb751cf7 /nova/endpoint | |
| parent | 9526e1b3f14a7d9b8b2dcf7012e099a13e6fc80e (diff) | |
Adding missing default values and fixing bare Redis fetch for volume list.
Diffstat (limited to 'nova/endpoint')
| -rw-r--r-- | nova/endpoint/cloud.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/endpoint/cloud.py b/nova/endpoint/cloud.py index f14532b97..2e5a18afd 100644 --- a/nova/endpoint/cloud.py +++ b/nova/endpoint/cloud.py @@ -72,7 +72,7 @@ class CloudController(object): @property def volumes(self): """ returns a list of all volumes """ - for volume_id in datastore.Redis.instance().smembers("volumes"): + for volume_id in datastore.Redis.instance().smembers("storage-volumes"): volume = storage.Volume(volume_id=volume_id) yield volume |
