Add missing comma in Volume ResourceWrapper class

Change-Id: Ie0b0f40966f6bf98f693a971fdb498537842b21e
Closes-Bug: #1308642
This commit is contained in:
Lin Hua Cheng 2014-04-16 09:36:27 -07:00
parent f0eeab5524
commit c45449c3a9
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ class BaseCinderAPIResourceWrapper(base.APIResourceWrapper):
class Volume(BaseCinderAPIResourceWrapper):
_attrs = ['id', 'name', 'description', 'size', 'status', 'created_at',
'volume_type', 'availability_zone', 'imageRef', 'bootable'
'volume_type', 'availability_zone', 'imageRef', 'bootable',
'snapshot_id', 'source_volid', 'attachments', 'tenant_name',
'os-vol-host-attr:host', 'os-vol-tenant-attr:tenant_id',
'metadata']